Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 88671 invoked from network); 5 Apr 2006 11:58:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Apr 2006 11:58:59 -0000 Received: (qmail 42967 invoked by uid 500); 5 Apr 2006 11:58:53 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 42927 invoked by uid 500); 5 Apr 2006 11:58:53 -0000 Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: dev@apr.apache.org List-Id: Delivered-To: mailing list commits@apr.apache.org Received: (qmail 42829 invoked by uid 99); 5 Apr 2006 11:58:53 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Apr 2006 04:58:52 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 05 Apr 2006 04:58:51 -0700 Received: (qmail 88231 invoked by uid 65534); 5 Apr 2006 11:58:30 -0000 Message-ID: <20060405115829.88230.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r391595 - /apr/apr/trunk/include/apr_file_io.h Date: Wed, 05 Apr 2006 11:58:28 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Wed Apr 5 04:58:27 2006 New Revision: 391595 URL: http://svn.apache.org/viewcvs?rev=391595&view=rev Log: Docstring fix. * include/apr_file_io.h (apr_file_open, apr_file_pipe_create): Clarify the default inheritance rules. Submitted by: Peter N. Lundblad Modified: apr/apr/trunk/include/apr_file_io.h Modified: apr/apr/trunk/include/apr_file_io.h URL: http://svn.apache.org/viewcvs/apr/apr/trunk/include/apr_file_io.h?rev=391595&r1=391594&r2=391595&view=diff ============================================================================== --- apr/apr/trunk/include/apr_file_io.h (original) +++ apr/apr/trunk/include/apr_file_io.h Wed Apr 5 04:58:27 2006 @@ -213,6 +213,9 @@ * @param pool The pool to use. * @remark If perm is APR_OS_DEFAULT and the file is being created, * appropriate default permissions will be used. + * @remark By default, the returned file descriptor will not be + * inherited by child processes created by apr_proc_create(). This + * can be changed using apr_file_inherit_set(). */ APR_DECLARE(apr_status_t) apr_file_open(apr_file_t **newf, const char *fname, apr_int32_t flag, apr_fileperms_t perm, @@ -618,6 +621,9 @@ * @param in The file descriptor to use as input to the pipe. * @param out The file descriptor to use as output from the pipe. * @param pool The pool to operate on. + * @remark By default, the returned file descriptors will be inherited + * by child processes created using apr_proc_create(). This can be + * changed using apr_file_inherit_unset(). */ APR_DECLARE(apr_status_t) apr_file_pipe_create(apr_file_t **in, apr_file_t **out,