mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Add some docs.
2005-12-05 Matthias Clasen <mclasen@redhat.com> * glib/gasyncqueue.c: Add some docs.
This commit is contained in:
parent
5c32d5236f
commit
559e1057a0
@ -1,5 +1,9 @@
|
||||
2005-12-05 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gasyncqueue.c: Add some docs.
|
||||
|
||||
* tests/libmoduletestplugin_a.c: Fix compiler warnings.
|
||||
|
||||
* glib/gatomic.c: In the ia64 implementation, use
|
||||
__sync builtin without _si or _di suffix. (#321229,
|
||||
Stanislav Brabec, patch by Andreas Schwab)
|
||||
|
@ -1,5 +1,9 @@
|
||||
2005-12-05 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gasyncqueue.c: Add some docs.
|
||||
|
||||
* tests/libmoduletestplugin_a.c: Fix compiler warnings.
|
||||
|
||||
* glib/gatomic.c: In the ia64 implementation, use
|
||||
__sync builtin without _si or _di suffix. (#321229,
|
||||
Stanislav Brabec, patch by Andreas Schwab)
|
||||
|
@ -1,5 +1,9 @@
|
||||
2005-12-05 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* glib/gasyncqueue.c: Add some docs.
|
||||
|
||||
* tests/libmoduletestplugin_a.c: Fix compiler warnings.
|
||||
|
||||
* glib/gatomic.c: In the ia64 implementation, use
|
||||
__sync builtin without _si or _di suffix. (#321229,
|
||||
Stanislav Brabec, patch by Andreas Schwab)
|
||||
|
@ -83,6 +83,10 @@ g_async_queue_ref (GAsyncQueue *queue)
|
||||
* @queue: a #GAsyncQueue.
|
||||
*
|
||||
* Increases the reference count of the asynchronous @queue by 1.
|
||||
*
|
||||
* @Deprecated: Since 2.8, reference counting is done atomically
|
||||
* so g_async_queue_ref() can be used regardless of the @queue's
|
||||
* lock.
|
||||
**/
|
||||
void
|
||||
g_async_queue_ref_unlocked (GAsyncQueue *queue)
|
||||
@ -101,6 +105,10 @@ g_async_queue_ref_unlocked (GAsyncQueue *queue)
|
||||
* releases the lock. This function must be called while holding the
|
||||
* @queue's lock. If the reference count went to 0, the @queue will be
|
||||
* destroyed and the memory allocated will be freed.
|
||||
*
|
||||
* @Deprecated: Since 2.8, reference counting is done atomically
|
||||
* so g_async_queue_unref() can be used regardless of the @queue's
|
||||
* lock.
|
||||
**/
|
||||
void
|
||||
g_async_queue_unref_and_unlock (GAsyncQueue *queue)
|
||||
|
Loading…
Reference in New Issue
Block a user