Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 17940 invoked by uid 500); 12 Aug 2001 16:08:32 -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 17929 invoked from network); 12 Aug 2001 16:08:32 -0000 Message-ID: <3B76AA05.7060306@cnet.com> Date: Sun, 12 Aug 2001 09:08:37 -0700 From: Ian Holsman User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.3+) Gecko/20010810 X-Accept-Language: en-us MIME-Version: 1.0 To: dev@apr.apache.org CC: apr-cvs@apache.org Subject: Re: cvs commit: apr/include apr_file_io.h References: <20010812160202.46529.qmail@icarus.apache.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N I think I deleted a accessor a well.. Index: apr_file_io.h =================================================================== RCS file: /home/cvspublic/apr/include/apr_file_io.h,v retrieving revision 1.108 diff -u -r1.108 apr_file_io.h --- apr_file_io.h 2001/08/12 16:02:01 1.108 +++ apr_file_io.h 2001/08/12 16:04:21 @@ -560,6 +560,12 @@ * Get the pool used by the file. * @return apr_pool_t the pool */ +APR_POOL_DECLARE_ACCESSOR(file); +/** + * Set a file to be inherited by child processes. + * @param file The file to enable inheritance. + * + */ APR_DECLARE(void) apr_file_set_inherit(apr_file_t *file); rbb@apache.org wrote: >rbb 01/08/12 09:02:02 > > Modified: include apr_file_io.h > Log: > Ian reports that I missed this line. :-) > Submitted by: Ian Holsman > > Revision Changes Path > 1.108 +1 -0 apr/include/apr_file_io.h > > Index: apr_file_io.h > =================================================================== > RCS file: /home/cvs/apr/include/apr_file_io.h,v > retrieving revision 1.107 > retrieving revision 1.108 > diff -u -r1.107 -r1.108 > --- apr_file_io.h 2001/08/12 05:50:46 1.107 > +++ apr_file_io.h 2001/08/12 16:02:01 1.108 > @@ -113,6 +113,7 @@ > #define APR_SET SEEK_SET > #define APR_CUR SEEK_CUR > #define APR_END SEEK_END > +/** @} */ > > /** should be same as whence type in lseek, POSIX defines this as int */ > typedef int apr_seek_where_t; > > > >