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 2004/06/04 15:28:21 UTC

cvs commit: apr/include apr_thread_proc.h

jorton      2004/06/04 06:28:21

  Modified:    include  apr_thread_proc.h
  Log:
  * include/apr_thread_proc.h: apr_proc_create() API clarification.
  
  PR: 28397
  
  Revision  Changes    Path
  1.104     +8 -6      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.103
  retrieving revision 1.104
  diff -d -w -u -r1.103 -r1.104
  --- apr_thread_proc.h	27 May 2004 20:34:30 -0000	1.103
  +++ apr_thread_proc.h	4 Jun 2004 13:28:21 -0000	1.104
  @@ -525,14 +525,16 @@
    *            of commands.
    * @param attr the procattr we should use to determine how to create the new
    *         process
  - * @param cont The pool to use. 
  + * @param pool The pool to use.
  + * @note This function returns without waiting for the new process to terminate;
  + * use apr_proc_wait for that.
    */
   APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *new_proc,
                                                const char *progname,
                                                const char * const *args,
                                                const char * const *env, 
                                                apr_procattr_t *attr, 
  -                                             apr_pool_t *cont);
  +                                          apr_pool_t *pool);
   
   /**
    * Wait for a child process to die