[glib] trivial: small header reordering
- From: Ryan Lortie <ryanl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] trivial: small header reordering
- Date: Wed, 21 Sep 2011 20:21:18 +0000 (UTC)
commit c291259c659a2dd48f1202863852f61a34290a84
Author: Matthias Clasen <mclasen redhat com>
Date: Mon Sep 19 00:29:53 2011 -0400
trivial: small header reordering
glib/gthread.h | 9 ++++-----
1 files changed, 4 insertions(+), 5 deletions(-)
---
diff --git a/glib/gthread.h b/glib/gthread.h
index 45b0cc7..4744cc6 100644
--- a/glib/gthread.h
+++ b/glib/gthread.h
@@ -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,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]