From commits-return-6739-apmail-apr-commits-archive=apr.apache.org@apr.apache.org Wed May 04 14:45:38 2005 Return-Path: Delivered-To: apmail-apr-commits-archive@www.apache.org Received: (qmail 12720 invoked from network); 4 May 2005 14:45:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 May 2005 14:45:38 -0000 Received: (qmail 58799 invoked by uid 500); 4 May 2005 14:40:44 -0000 Delivered-To: apmail-apr-commits-archive@apr.apache.org Received: (qmail 58647 invoked by uid 500); 4 May 2005 14:40:43 -0000 Mailing-List: contact commits-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 commits@apr.apache.org Received: (qmail 58538 invoked by uid 99); 4 May 2005 14:40:40 -0000 X-ASF-Spam-Status: No, hits=0.2 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Wed, 04 May 2005 07:40:39 -0700 Received: (qmail 7734 invoked by uid 65534); 4 May 2005 14:38:30 -0000 Message-ID: <20050504143830.7732.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Subject: svn commit: r168133 - /apr/apr/trunk/include/apr_pools.h Date: Wed, 04 May 2005 14:38:30 -0000 To: commits@apr.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.0-dev X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Wed May 4 07:38:28 2005 New Revision: 168133 URL: http://svn.apache.org/viewcvs?rev=3D168133&view=3Drev Log: * include/apr_pools.h: Remove some out-of-context references to httpd code. Modified: apr/apr/trunk/include/apr_pools.h Modified: apr/apr/trunk/include/apr_pools.h URL: http://svn.apache.org/viewcvs/apr/apr/trunk/include/apr_pools.h?rev=3D= 168133&r1=3D168132&r2=3D168133&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- apr/apr/trunk/include/apr_pools.h (original) +++ apr/apr/trunk/include/apr_pools.h Wed May 4 07:38:28 2005 @@ -584,16 +584,14 @@ * structures. * * However, sometimes this ancestor requirement is inconvenient -- - * sometimes we're forced to create a sub pool (such as through - * apr_sub_req_lookup_uri), and the sub pool is guaranteed to have - * the same lifetime as the parent pool. This is a guarantee implemented - * by the *caller*, not by the pool code. That is, the caller guarantees - * they won't destroy the sub pool individually prior to destroying the - * parent pool. + * sometimes it's necessary to create a sub pool where the sub pool is + * guaranteed to have the same lifetime as the parent pool. This is a + * guarantee implemented by the *caller*, not by the pool code. That + * is, the caller guarantees they won't destroy the sub pool + * individually prior to destroying the parent pool. * * In this case the caller must call apr_pool_join() to indicate this - * guarantee to the APR_POOL_DEBUG code. There are a few examples spread - * through the standard modules. + * guarantee to the APR_POOL_DEBUG code. * * These functions are only implemented when #APR_POOL_DEBUG is set. *