You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by bn...@apache.org on 2001/08/03 02:32:10 UTC

cvs commit: apr/include apr_thread_proc.h

bnicholes    01/08/02 17:32:10

  Modified:    include  apr_thread_proc.h
  Log:
  Added the prototype for apr_thread_yield()
  
  Revision  Changes    Path
  1.69      +6 -0      apr/include/apr_thread_proc.h
  
  Index: apr_thread_proc.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_thread_proc.h,v
  retrieving revision 1.68
  retrieving revision 1.69
  diff -u -r1.68 -r1.69
  --- apr_thread_proc.h	2001/07/28 03:26:59	1.68
  +++ apr_thread_proc.h	2001/08/03 00:32:10	1.69
  @@ -217,6 +217,12 @@
                                             apr_thread_t *thd); 
   
   /**
  + * force the current thread to yield the processor
  + * @deffunc void apr_thread_yield()
  + */
  +APR_DECLARE(void) apr_thread_yield();
  +
  +/**
    * detach a thread
    * @param thd The thread to detach 
    * @deffunc apr_status_t apr_thread_detach(apr_thread_t *thd)