Return-Path: Delivered-To: apmail-apr-dev-archive@apr.apache.org Received: (qmail 40788 invoked by uid 500); 22 Jun 2001 11:36:05 -0000 Mailing-List: contact dev-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list dev@apr.apache.org Received: (qmail 40758 invoked from network); 22 Jun 2001 11:36:00 -0000 Date: Fri, 22 Jun 2001 20:35:59 +0900 (JST) Message-Id: <20010622.203559.35499076.hanai@imgsrc.co.jp> To: dev@apr.apache.org Subject: a pache for document in apr_bucket.h From: Hiroyuki Hanai X-Mailer: Mew version 1.95b106 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N hi, following is a small patch for descriptions in apr_buckets.h hiro hanai Index: apr_buckets.h =================================================================== RCS file: /pub/cvs/Apache/apr-util/include/apr_buckets.h,v retrieving revision 1.99 diff -u -r1.99 apr_buckets.h --- apr_buckets.h 2001/06/13 19:16:35 1.99 +++ apr_buckets.h 2001/06/22 11:32:38 @@ -488,7 +488,7 @@ #define APR_BUCKET_IS_POOL(e) (e->type == &apr_bucket_type_pool) /* - * General-purpose reference counting for the varous bucket types. + * General-purpose reference counting for the various bucket types. * * Any bucket type that keeps track of the resources it uses (i.e. * most of them except for IMMORTAL, TRANSIENT, and EOS) needs to @@ -1048,12 +1048,12 @@ /* ***** Functions to Create Buckets of varying types ***** */ /* * Each bucket type foo has two initialization functions: - * apr_bucket_make_foo which sets up some already-allocated memory as a - * bucket of type foo; and apr_bucket_create_foo which allocates memory + * apr_bucket_foo_make which sets up some already-allocated memory as a + * bucket of type foo; and apr_bucket_foo_create which allocates memory * for the bucket, calls apr_bucket_make_foo, and initializes the - * bucket's list pointers. The apr_bucket_make_foo functions are used + * bucket's list pointers. The apr_bucket_foo_make functions are used * inside the bucket code to change the type of buckets in place; - * other code should call apr_bucket_create_foo. All the initialization + * other code should call apr_bucket_foo_create. All the initialization * functions change nothing if they fail. */