summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2015-07-27 06:24:44 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-07-27 06:42:46 -0400
commit9c4887027d6bd09f38120b195c677dbe3bc5654b (patch)
tree17e1f6f034af041282dffcf05cbb76d2fffdc1da
parentc885d42751e35ac8210f889d80e4b059a08d86ae (diff)
downloadglib-9c4887027d6bd09f38120b195c677dbe3bc5654b.tar.gz
Remove some questionable documentation
A function that takes a lock can certainly block in the sense that it has to wait if the lock is taken. https://bugzilla.gnome.org/show_bug.cgi?id=751751
-rw-r--r--glib/gasyncqueue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/glib/gasyncqueue.c b/glib/gasyncqueue.c
index 5fc7300c6..84d2f7504 100644
--- a/glib/gasyncqueue.c
+++ b/glib/gasyncqueue.c
@@ -790,7 +790,7 @@ g_async_queue_sort_unlocked (GAsyncQueue *queue,
* @queue: a #GAsyncQueue
* @data: the @data to remove from the @queue
*
- * Remove an item from the queue. This function does not block.
+ * Remove an item from the queue.
*
* Returns: %TRUE if the item was removed
*
@@ -817,7 +817,7 @@ g_async_queue_remove (GAsyncQueue *queue,
* @queue: a #GAsyncQueue
* @data: the @data to remove from the @queue
*
- * Remove an item from the queue. This function does not block.
+ * Remove an item from the queue.
*
* This function must be called while holding the @queue's lock.
*