diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c
index a7b0a233f..4b4d33437 100644
--- a/glib/gthread-posix.c
+++ b/glib/gthread-posix.c
@@ -76,19 +76,6 @@ g_thread_abort (gint status,
/* {{{1 GMutex */
-/**
- * G_MUTEX_INIT:
- *
- * Initializer for statically allocated #GMutexes.
- * Alternatively, g_mutex_init() can be used.
- *
- * |[
- * GMutex mutex = G_MUTEX_INIT;
- * ]|
- *
- * Since: 2.32
- */
-
/**
* g_mutex_init:
* @mutex: an uninitialized #GMutex
@@ -245,23 +232,6 @@ g_mutex_trylock (GMutex *mutex)
/* {{{1 GRecMutex */
-/**
- * GRecMutex:
- *
- * The GRecMutex struct is an opaque data structure to represent a
- * recursive mutex. It is similar to a #GMutex with the difference
- * that it is possible to lock a GRecMutex multiple times in the same
- * thread without deadlock. When doing so, care has to be taken to
- * unlock the recursive mutex as often as it has been locked.
- *
- * A GRecMutex should only be accessed with the
- * g_rec_mutex_ functions. Before a GRecMutex
- * can be used, it has to be initialized with #G_REC_MUTEX_INIT or
- * g_rec_mutex_init().
- *
- * Since: 2.32
- */
-
static pthread_mutex_t *
g_rec_mutex_impl_new (void)
{
@@ -300,19 +270,6 @@ g_rec_mutex_get_impl (GRecMutex *mutex)
return impl;
}
-/**
- * G_REC_MUTEX_INIT:
- *
- * Initializer for statically allocated #GRecMutexes.
- * Alternatively, g_rec_mutex_init() can be used.
- *
- * |[
- * GRecMutex mutex = G_REC_MUTEX_INIT;
- * ]|
- *
- * Since: 2.32
- */
-
/**
* g_rec_mutex_init:
* @rec_mutex: an uninitialized #GRecMutex
@@ -436,88 +393,6 @@ g_rec_mutex_trylock (GRecMutex *rec_mutex)
/* {{{1 GRWLock */
-/**
- * GRWLock:
- *
- * The GRWLock struct is an opaque data structure to represent a
- * reader-writer lock. It is similar to a #GMutex in that it allows
- * multiple threads to coordinate access to a shared resource.
- *
- * The difference to a mutex is that a reader-writer lock discriminates
- * between read-only ('reader') and full ('writer') access. While only
- * one thread at a time is allowed write access (by holding the 'writer'
- * lock via g_rw_lock_writer_lock()), multiple threads can gain
- * simultaneous read-only access (by holding the 'reader' lock via
- * g_rw_lock_reader_lock()).
- *
- *
- * An array with access functions
- *
- * GRWLock lock = G_RW_LOCK_INIT;
- * GPtrArray *array;
- *
- * gpointer
- * my_array_get (guint index)
- * {
- * gpointer retval = NULL;
- *
- * if (!array)
- * return NULL;
- *
- * g_rw_lock_reader_lock (&lock);
- * if (index < array->len)
- * retval = g_ptr_array_index (array, index);
- * g_rw_lock_reader_unlock (&lock);
- *
- * return retval;
- * }
- *
- * void
- * my_array_set (guint index, gpointer data)
- * {
- * g_rw_lock_writer_lock (&lock);
- *
- * if (!array)
- * array = g_ptr_array_new ();
- *
- * if (index >= array->len)
- * g_ptr_array_set_size (array, index+1);
- * g_ptr_array_index (array, index) = data;
- *
- * g_rw_lock_writer_unlock (&lock);
- * }
- *
- *
- * This example shows an array which can be accessed by many readers
- * (the my_array_get() function) simultaneously,
- * whereas the writers (the my_array_set()
- * function) will only be allowed once at a time and only if no readers
- * currently access the array. This is because of the potentially
- * dangerous resizing of the array. Using these functions is fully
- * multi-thread safe now.
- *
- *
- *
- * A GRWLock should only be accessed with the
- * g_rw_lock_ functions. Before it can be used,
- * it has to be initialized with #G_RW_LOCK_INIT or g_rw_lock_init().
- *
- * Since: 2.32
- */
-
-/**
- * G_RW_LOCK_INIT:
- *
- * Initializer for statically allocated #GRWLocks.
- * Alternatively, g_rw_lock_init_init() can be used.
- *
- * |[
- * GRWLock lock = G_RW_LOCK_INIT;
- * ]|
- *
- * Since: 2.32
- */
-
/**
* g_rw_lock_init:
* @lock: an uninitialized #GRWLock
@@ -685,19 +560,6 @@ g_rw_lock_reader_unlock (GRWLock *lock)
/* {{{1 GCond */
-/**
- * G_COND_INIT:
- *
- * Initializer for statically allocated #GConds.
- * Alternatively, g_cond_init() can be used.
- *
- * |[
- * GCond cond = G_COND_INIT;
- * ]|
- *
- * Since: 2.32
- */
-
/**
* g_cond_init:
* @cond: an uninitialized #GCond
diff --git a/glib/gthread.c b/glib/gthread.c
index 81d643232..c7d1df0fe 100644
--- a/glib/gthread.c
+++ b/glib/gthread.c
@@ -21,7 +21,6 @@
* Boston, MA 02111-1307, USA.
*/
-/* {{{1 Prelude */
/* Prelude {{{1 ----------------------------------------------------------- */
/*
@@ -342,8 +341,137 @@
*
* A #GMutex should only be accessed via g_mutex_
* functions.
- **/
-
+ */
+
+/**
+ * G_MUTEX_INIT:
+ *
+ * Initializer for statically allocated #GMutexes.
+ * Alternatively, g_mutex_init() can be used.
+ *
+ * |[
+ * GMutex mutex = G_MUTEX_INIT;
+ * ]|
+ *
+ * Since: 2.32
+ */
+
+/* GRecMutex Documentation {{{1 -------------------------------------- */
+
+/**
+ * GRecMutex:
+ *
+ * The GRecMutex struct is an opaque data structure to represent a
+ * recursive mutex. It is similar to a #GMutex with the difference
+ * that it is possible to lock a GRecMutex multiple times in the same
+ * thread without deadlock. When doing so, care has to be taken to
+ * unlock the recursive mutex as often as it has been locked.
+ *
+ * A GRecMutex should only be accessed with the
+ * g_rec_mutex_ functions. Before a GRecMutex
+ * can be used, it has to be initialized with #G_REC_MUTEX_INIT or
+ * g_rec_mutex_init().
+ *
+ * Since: 2.32
+ */
+
+/**
+ * G_REC_MUTEX_INIT:
+ *
+ * Initializer for statically allocated #GRecMutexes.
+ * Alternatively, g_rec_mutex_init() can be used.
+ *
+ * |[
+ * GRecMutex mutex = G_REC_MUTEX_INIT;
+ * ]|
+ *
+ * Since: 2.32
+ */
+
+/* GRWLock Documentation {{{1 ---------------------------------------- */
+
+/**
+ * GRWLock:
+ *
+ * The GRWLock struct is an opaque data structure to represent a
+ * reader-writer lock. It is similar to a #GMutex in that it allows
+ * multiple threads to coordinate access to a shared resource.
+ *
+ * The difference to a mutex is that a reader-writer lock discriminates
+ * between read-only ('reader') and full ('writer') access. While only
+ * one thread at a time is allowed write access (by holding the 'writer'
+ * lock via g_rw_lock_writer_lock()), multiple threads can gain
+ * simultaneous read-only access (by holding the 'reader' lock via
+ * g_rw_lock_reader_lock()).
+ *
+ *
+ * An array with access functions
+ *
+ * GRWLock lock = G_RW_LOCK_INIT;
+ * GPtrArray *array;
+ *
+ * gpointer
+ * my_array_get (guint index)
+ * {
+ * gpointer retval = NULL;
+ *
+ * if (!array)
+ * return NULL;
+ *
+ * g_rw_lock_reader_lock (&lock);
+ * if (index < array->len)
+ * retval = g_ptr_array_index (array, index);
+ * g_rw_lock_reader_unlock (&lock);
+ *
+ * return retval;
+ * }
+ *
+ * void
+ * my_array_set (guint index, gpointer data)
+ * {
+ * g_rw_lock_writer_lock (&lock);
+ *
+ * if (!array)
+ * array = g_ptr_array_new ();
+ *
+ * if (index >= array->len)
+ * g_ptr_array_set_size (array, index+1);
+ * g_ptr_array_index (array, index) = data;
+ *
+ * g_rw_lock_writer_unlock (&lock);
+ * }
+ *
+ *
+ * This example shows an array which can be accessed by many readers
+ * (the my_array_get() function) simultaneously,
+ * whereas the writers (the my_array_set()
+ * function) will only be allowed once at a time and only if no readers
+ * currently access the array. This is because of the potentially
+ * dangerous resizing of the array. Using these functions is fully
+ * multi-thread safe now.
+ *
+ *
+ *
+ * A GRWLock should only be accessed with the
+ * g_rw_lock_ functions. Before it can be used,
+ * it has to be initialized with #G_RW_LOCK_INIT or g_rw_lock_init().
+ *
+ * Since: 2.32
+ */
+
+/**
+ * G_RW_LOCK_INIT:
+ *
+ * Initializer for statically allocated #GRWLocks.
+ * Alternatively, g_rw_lock_init_init() can be used.
+ *
+ * |[
+ * GRWLock lock = G_RW_LOCK_INIT;
+ * ]|
+ *
+ * Since: 2.32
+ */
+
/* GCond Documentation {{{1 ------------------------------------------ */
/**
@@ -403,7 +531,21 @@
* to be woken up, even if the condition itself is protected by a
* #GMutex, like above.
*
- * A #GCond should only be accessed via the following functions.
+ * A #GCond should only be accessed via the g_cond_
+ * functions.
+ */
+
+/**
+ * G_COND_INIT:
+ *
+ * Initializer for statically allocated #GConds.
+ * Alternatively, g_cond_init() can be used.
+ *
+ * |[
+ * GCond cond = G_COND_INIT;
+ * ]|
+ *
+ * Since: 2.32
*/
/* GPrivate Documentation {{{1 --------------------------------------- */
@@ -454,13 +596,9 @@
* memory to the pointer and write the pointer back. Now we have an
* integer value that is private to the current thread.
*
- * The #GPrivate struct should only be accessed via the following
- * functions.
- *
- * All of the g_private_* functions are
- * actually macros. Apart from taking their addresses, you can however
- * use them as if they were functions.
- **/
+ * The #GPrivate struct should only be accessed via the
+ * g_private_ functions.
+ */
/* GThread Documentation {{{1 ---------------------------------------- */
/**
@@ -503,7 +641,7 @@ g_thread_error_quark (void)
{
return g_quark_from_static_string ("g_thread_error");
}
-
+
/* Miscellaneous Structures {{{1 ------------------------------------------ */
typedef struct _GRealThread GRealThread;
@@ -1119,7 +1257,8 @@ g_thread_create_proxy (gpointer data)
g_private_set (&g_thread_specific_private, data);
/* the lock makes sure, that thread->system_thread is written,
- before thread->thread.func is called. See g_thread_create. */
+ * before thread->thread.func is called. See g_thread_create.
+ */
G_LOCK (g_thread);
G_UNLOCK (g_thread);