From: Matthias Clasen Date: Mon, 27 Jul 2015 10:24:44 +0000 (-0400) Subject: Remove some questionable documentation X-Git-Tag: upstream/2.48.0^2~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c4887027d6bd09f38120b195c677dbe3bc5654b;p=platform%2Fupstream%2Fglib.git 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 --- diff --git a/glib/gasyncqueue.c b/glib/gasyncqueue.c index 5fc7300..84d2f75 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. *