You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by da...@apache.org on 2007/07/28 06:11:28 UTC

svn commit: r560487 - /apr/apr/branches/evenset/include/apr_wqueue.h

Author: davi
Date: Fri Jul 27 21:11:28 2007
New Revision: 560487

URL: http://svn.apache.org/viewvc?view=rev&rev=560487
Log:
Fill in missing bits of APR waitqueue documentation.

Modified:
    apr/apr/branches/evenset/include/apr_wqueue.h

Modified: apr/apr/branches/evenset/include/apr_wqueue.h
URL: http://svn.apache.org/viewvc/apr/apr/branches/evenset/include/apr_wqueue.h?view=diff&rev=560487&r1=560486&r2=560487
==============================================================================
--- apr/apr/branches/evenset/include/apr_wqueue.h (original)
+++ apr/apr/branches/evenset/include/apr_wqueue.h Fri Jul 27 21:11:28 2007
@@ -82,7 +82,7 @@
                                          apr_wqueue_entry_t *entry);
 
 /**
- * Remove an entry a wait queue
+ * Remove an entry from a wait queue
  * @param wqueue The wait queue to remove the entry from
  * @param entry The wait queue entry
  */
@@ -90,10 +90,10 @@
                                             apr_wqueue_entry_t *entry);
 
 /**
- *
- * @param wqueue
+ * Wake up @nwake processes sleeping on the wait queue.
+ * @param wqueue The wait queue
  * @param nwake (input) Number of process to wake or 0 to wake up all
- * (output) - Number of
+ * (output) - Number of processes woken up
  * @remark The woken up entries are not removed from the wait queue
  */
 APR_DECLARE(apr_status_t) apr_wqueue_wake(apr_wqueue_t *wqueue,