Change the order to match the order in g_thread_create().
[platform/upstream/glib.git] / glib / gthread.h
index 3452af4..098cfc4 100644 (file)
@@ -56,9 +56,9 @@ typedef enum
 typedef struct _GThread         GThread;
 struct  _GThread
 {
-  GThreadPriority priority;
-  gboolean bound;
   gboolean joinable;
+  gboolean bound;
+  GThreadPriority priority;
 };
 
 typedef struct _GMutex          GMutex;