[glib/wip/mutexes] trivial: small header reordering
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib/wip/mutexes] trivial: small header reordering
- Date: Mon, 19 Sep 2011 11:12:03 +0000 (UTC)
commit a5b07dcfe4f24c5ff18ead82b5b4f9c181c26e66
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]