From fe89b2ea293cbcd02de2cba1834e03eee0190cdc Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Thu, 28 Jan 2010 19:12:55 -0500 Subject: [PATCH] Since: markers for g_bit_*lock() --- glib/gbitlock.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/glib/gbitlock.c b/glib/gbitlock.c index b2ea9b5a7..33cbb2a8a 100644 --- a/glib/gbitlock.c +++ b/glib/gbitlock.c @@ -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,