trivial: small header reordering
authorMatthias Clasen <mclasen@redhat.com>
Mon, 19 Sep 2011 04:29:53 +0000 (00:29 -0400)
committerRyan Lortie <desrt@desrt.ca>
Wed, 21 Sep 2011 20:06:56 +0000 (16:06 -0400)
glib/gthread.h

index 45b0cc7..4744cc6 100644 (file)
@@ -293,6 +293,8 @@ extern void glib_dummy_decl (void);
 #endif /* !G_DEBUG_LOCKS */
 
 
+GMutex *                g_mutex_new                                     (void);
+void                    g_mutex_free                                    (GMutex         *mutex);
 void                    g_mutex_init                                    (GMutex         *mutex);
 void                    g_mutex_clear                                   (GMutex         *mutex);
 
@@ -300,6 +302,8 @@ void                    g_mutex_lock                                    (GMutex
 void                    g_mutex_unlock                                  (GMutex         *mutex);
 gboolean                g_mutex_trylock                                 (GMutex         *mutex);
 
+GCond *                 g_cond_new                                      (void);
+void                    g_cond_free                                     (GCond          *cond);
 void                    g_cond_init                                     (GCond          *cond);
 void                    g_cond_clear                                    (GCond          *cond);
 
@@ -314,11 +318,6 @@ gboolean                g_cond_timedwait                                (GCond
                                                                          GMutex         *mutex,
                                                                          gint64          abs_time);
 
-GMutex *                g_mutex_new                                     (void);
-void                    g_mutex_free                                    (GMutex         *mutex);
-GCond *                 g_cond_new                                      (void);
-void                    g_cond_free                                     (GCond          *cond);
-
 GPrivate *              g_private_new                                   (GDestroyNotify  notify);
 gpointer                g_private_get                                   (GPrivate       *key);
 void                    g_private_set                                   (GPrivate       *key,