mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-19 23:28:54 +02:00
gbitlock: fix gtkdoc brokenness
This commit is contained in:
@@ -233,6 +233,7 @@ g_bit_lock (volatile gint *address,
|
|||||||
* g_bit_trylock:
|
* g_bit_trylock:
|
||||||
* @address: a pointer to an integer
|
* @address: a pointer to an integer
|
||||||
* @lock_bit: a bit value between 0 and 31
|
* @lock_bit: a bit value between 0 and 31
|
||||||
|
* @returns: %TRUE if the lock was acquired
|
||||||
*
|
*
|
||||||
* Sets the indicated @lock_bit in @address, returning %TRUE if
|
* Sets the indicated @lock_bit in @address, returning %TRUE if
|
||||||
* successful. If the bit is already set, returns %FALSE immediately.
|
* successful. If the bit is already set, returns %FALSE immediately.
|
||||||
|
@@ -31,11 +31,11 @@
|
|||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
void g_bit_lock (volatile gint *lock,
|
void g_bit_lock (volatile gint *address,
|
||||||
gint lock_bit);
|
gint lock_bit);
|
||||||
gboolean g_bit_trylock (volatile gint *lock,
|
gboolean g_bit_trylock (volatile gint *address,
|
||||||
gint lock_bit);
|
gint lock_bit);
|
||||||
void g_bit_unlock (volatile gint *lock,
|
void g_bit_unlock (volatile gint *address,
|
||||||
gint lock_bit);
|
gint lock_bit);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
Reference in New Issue
Block a user