summaryrefslogtreecommitdiff
path: root/include/apr_thread_cond.h
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2003-12-29 14:57:30 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2003-12-29 14:57:30 +0000
commit02459f9ca2a4484d2742bd284f096203fddb3010 (patch)
tree33d512b768903fcf3b26ead4a2074946e97b86e8 /include/apr_thread_cond.h
parent00b49f1b1c21506706b969686081fa9968c5d5cd (diff)
downloadlibapr-02459f9ca2a4484d2742bd284f096203fddb3010.tar.gz
Spelling/grammar fixes.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64846 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_thread_cond.h')
-rw-r--r--include/apr_thread_cond.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/apr_thread_cond.h b/include/apr_thread_cond.h
index 263604eb3..1fa673708 100644
--- a/include/apr_thread_cond.h
+++ b/include/apr_thread_cond.h
@@ -127,9 +127,9 @@ APR_DECLARE(apr_status_t) apr_thread_cond_timedwait(apr_thread_cond_t *cond,
apr_interval_time_t timeout);
/**
- * Signals a singla thread, if one exists, that is blocking on the given
+ * Signals a single thread, if one exists, that is blocking on the given
* condition variable. That thread is then scheduled to wake up and acquire
- * the associated mutex. Although it is not required, if predictible schedule
+ * the associated mutex. Although it is not required, if predictable scheduling
* is desired, that mutex must be locked while calling this function.
* @param cond the condition variable on which to produce the signal.
*/
@@ -137,7 +137,7 @@ APR_DECLARE(apr_status_t) apr_thread_cond_signal(apr_thread_cond_t *cond);
/**
* Signals all threads blocking on the given condition variable.
- * Each thread that was signaled is then schedule to wake up and acquire
+ * Each thread that was signaled is then scheduled to wake up and acquire
* the associated mutex. This will happen in a serialized manner.
* @param cond the condition variable on which to produce the broadcast.
*/