Since: markers for g_bit_*lock()

This commit is contained in:
Ryan Lortie 2010-01-28 19:12:55 -05:00
parent 40eae351b1
commit fe89b2ea29

View File

@ -202,6 +202,8 @@ static volatile gint g_bit_lock_contended[CONTENTION_CLASSES];
* This function accesses @address atomically. All other accesses to
* @address must be atomic in order for this function to work
* reliably.
*
* Since: 2.24
**/
void
g_bit_lock (volatile gint *address,
@ -244,6 +246,8 @@ g_bit_lock (volatile gint *address,
* This function accesses @address atomically. All other accesses to
* @address must be atomic in order for this function to work
* reliably.
*
* Since: 2.24
**/
gboolean
g_bit_trylock (volatile gint *address,
@ -275,6 +279,8 @@ g_bit_trylock (volatile gint *address,
* This function accesses @address atomically. All other accesses to
* @address must be atomic in order for this function to work
* reliably.
*
* Since: 2.24
**/
void
g_bit_unlock (volatile gint *address,