From cvs-return-5826-apmail-apr-cvs-archive=apr.apache.org@apr.apache.org Fri Jun 04 13:28:37 2004 Return-Path: Delivered-To: apmail-apr-cvs-archive@www.apache.org Received: (qmail 97469 invoked from network); 4 Jun 2004 13:28:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 4 Jun 2004 13:28:37 -0000 Received: (qmail 47369 invoked by uid 500); 4 Jun 2004 13:28:38 -0000 Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 47253 invoked by uid 500); 4 Jun 2004 13:28:37 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 47228 invoked by uid 99); 4 Jun 2004 13:28:37 -0000 Date: 4 Jun 2004 13:28:21 -0000 Message-ID: <20040604132821.97283.qmail@minotaur.apache.org> From: jorton@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/include apr_thread_proc.h X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N 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