mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-08 19:49:41 +02:00
trivial: small header reordering
This commit is contained in:
parent
ae2ac9e809
commit
c291259c65
@ -293,6 +293,8 @@ extern void glib_dummy_decl (void);
|
|||||||
#endif /* !G_DEBUG_LOCKS */
|
#endif /* !G_DEBUG_LOCKS */
|
||||||
|
|
||||||
|
|
||||||
|
GMutex * g_mutex_new (void);
|
||||||
|
void g_mutex_free (GMutex *mutex);
|
||||||
void g_mutex_init (GMutex *mutex);
|
void g_mutex_init (GMutex *mutex);
|
||||||
void g_mutex_clear (GMutex *mutex);
|
void g_mutex_clear (GMutex *mutex);
|
||||||
|
|
||||||
@ -300,6 +302,8 @@ void g_mutex_lock (GMutex
|
|||||||
void g_mutex_unlock (GMutex *mutex);
|
void g_mutex_unlock (GMutex *mutex);
|
||||||
gboolean g_mutex_trylock (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_init (GCond *cond);
|
||||||
void g_cond_clear (GCond *cond);
|
void g_cond_clear (GCond *cond);
|
||||||
|
|
||||||
@ -314,11 +318,6 @@ gboolean g_cond_timedwait (GCond
|
|||||||
GMutex *mutex,
|
GMutex *mutex,
|
||||||
gint64 abs_time);
|
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);
|
GPrivate * g_private_new (GDestroyNotify notify);
|
||||||
gpointer g_private_get (GPrivate *key);
|
gpointer g_private_get (GPrivate *key);
|
||||||
void g_private_set (GPrivate *key,
|
void g_private_set (GPrivate *key,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user