From 9b076246af761fe78c407f8d4e64855d7f3cdb0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 20 Feb 2011 16:11:27 +0000 Subject: [PATCH] docs: add some more Since: markers to atomic queue docs --- gst/gstatomicqueue.c | 12 ++++++++++++ gst/gstatomicqueue.h | 2 ++ 2 files changed, 14 insertions(+) diff --git a/gst/gstatomicqueue.c b/gst/gstatomicqueue.c index 2e8b6b8c3a..31ac77096a 100644 --- a/gst/gstatomicqueue.c +++ b/gst/gstatomicqueue.c @@ -171,6 +171,8 @@ gst_atomic_queue_new (guint initial_size) * @queue: a #GstAtomicQueue * * Increase the refcount of @queue. + * + * Since: 0.10.33 */ void gst_atomic_queue_ref (GstAtomicQueue * queue) @@ -195,6 +197,8 @@ gst_atomic_queue_free (GstAtomicQueue * queue) * @queue: a #GstAtomicQueue * * Unref @queue and free the memory when the refcount reaches 0. + * + * Since: 0.10.33 */ void gst_atomic_queue_unref (GstAtomicQueue * queue) @@ -212,6 +216,8 @@ gst_atomic_queue_unref (GstAtomicQueue * queue) * Peek the head element of the queue without removing it from the queue. * * Returns: the head element of @queue or NULL when the queue is empty. + * + * Since: 0.10.33 */ gpointer gst_atomic_queue_peek (GstAtomicQueue * queue) @@ -261,6 +267,8 @@ gst_atomic_queue_peek (GstAtomicQueue * queue) * Get the head element of the queue. * * Returns: the head element of @queue or NULL when the queue is empty. + * + * Since: 0.10.33 */ gpointer gst_atomic_queue_pop (GstAtomicQueue * queue) @@ -326,6 +334,8 @@ gst_atomic_queue_pop (GstAtomicQueue * queue) * @data: the data * * Append @data to the tail of the queue. + * + * Since: 0.10.33 */ void gst_atomic_queue_push (GstAtomicQueue * queue, gpointer data) @@ -378,6 +388,8 @@ gst_atomic_queue_push (GstAtomicQueue * queue, gpointer data) * Get the amount of items in the queue. * * Returns: the number of elements in the queue. + * + * Since: 0.10.33 */ guint gst_atomic_queue_length (GstAtomicQueue * queue) diff --git a/gst/gstatomicqueue.h b/gst/gstatomicqueue.h index a501ca584b..51c10b908b 100644 --- a/gst/gstatomicqueue.h +++ b/gst/gstatomicqueue.h @@ -32,6 +32,8 @@ G_BEGIN_DECLS * Opaque atomic data queue. * * Use the acessor functions to get the stored values. + * + * Since: 0.10.33 */ typedef struct _GstAtomicQueue GstAtomicQueue;