* src/threads/native/threads.h (threadobject, threads_table_entry_t)
authortwisti <none@none>
Thu, 19 Oct 2006 09:27:24 +0000 (09:27 +0000)
committertwisti <none@none>
Thu, 19 Oct 2006 09:27:24 +0000 (09:27 +0000)
(threads_table_t): Forward typedef.
(threadobject): Changed dumpinfo to dumpinfo_t.

src/threads/native/threads.h

index 1f5da3c35544e1df5bbef27b2c2a9f8bf730575f..a7d78920bcea18c91c3c3224bd9e08b16fa85c09 100644 (file)
@@ -29,7 +29,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: threads.h 5698 2006-10-05 17:28:13Z twisti $
+   $Id: threads.h 5804 2006-10-19 09:27:24Z twisti $
 
 */
 
 #ifndef _THREADS_H
 #define _THREADS_H
 
+/* forward typedefs ***********************************************************/
+
+typedef struct threadobject          threadobject;
+typedef union  threads_table_entry_t threads_table_entry_t;
+typedef struct threads_table_t       threads_table_t;
+
+
 #include "config.h"
 
 #include <pthread.h>
@@ -44,9 +51,6 @@
 
 #include "vm/types.h"
 
-#include "config.h"
-#include "vm/types.h"
-
 #include "mm/memory.h"
 #include "native/jni.h"
 #include "native/include/java_lang_Object.h" /* required by java/lang/VMThread*/
@@ -73,13 +77,6 @@ typedef struct {
 #endif
 
 
-/* forward typedefs ***********************************************************/
-
-typedef struct threadobject          threadobject;
-typedef union  threads_table_entry_t threads_table_entry_t;
-typedef struct threads_table_t       threads_table_t;
-
-
 /* thread priorities **********************************************************/
 
 #define MIN_PRIORITY     1
@@ -184,7 +181,7 @@ struct threadobject {
        u1                   *_global_sp;        /* stack pointer for interpreter */
 #endif
 
-       dumpinfo              dumpinfo;     /* dump memory info structure         */
+       dumpinfo_t            dumpinfo;     /* dump memory info structure         */
 };