You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2003/12/29 15:57:30 UTC

cvs commit: apr/include apr_thread_cond.h

jorton      2003/12/29 06:57:30

  Modified:    include  apr_thread_cond.h
  Log:
  Spelling/grammar fixes.
  
  Revision  Changes    Path
  1.9       +3 -3      apr/include/apr_thread_cond.h
  
  Index: apr_thread_cond.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_thread_cond.h,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -u -r1.8 -r1.9
  --- apr_thread_cond.h	5 Mar 2003 21:22:26 -0000	1.8
  +++ apr_thread_cond.h	29 Dec 2003 14:57:30 -0000	1.9
  @@ -127,9 +127,9 @@
                                                       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 @@
   
   /**
    * 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.
    */