striker 02/03/18 07:04:18
Modified: include apr_pools.h
Log:
Update the doxygen docs to reflect the recent API change.
Revision Changes Path
1.82 +3 -7 apr/include/apr_pools.h
Index: apr_pools.h
===================================================================
RCS file: /home/cvs/apr/include/apr_pools.h,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- apr_pools.h 18 Mar 2002 15:01:42 -0000 1.81
+++ apr_pools.h 18 Mar 2002 15:04:18 -0000 1.82
@@ -179,12 +179,8 @@
* of its parent pool's attributes, except the apr_pool_t will
* be a sub-pool.
* @param apr_abort A function to use if the pool cannot allocate more
memory.
- * @param flags Flags indicating how the pool should be created:
- * - POOL_FNEW_ALLOCATOR will create a new allocator for the pool
- * instead of using the allocator of the parent.
- * - POOL_FLOCK will create a mutex for the newly created allocator
- * (this flag only makes sense in combination with
POOL_FNEW_ALLOCATOR)
- *
+ * @param allocator The allocator to use with the new pool. If NULL the
+ * allocator of the parent pool will be used.
*/
APR_DECLARE(apr_status_t) apr_pool_create_ex(apr_pool_t **newpool,
apr_pool_t *parent,
@@ -196,7 +192,7 @@
* @param newpool See: apr_pool_create.
* @param parent See: apr_pool_create.
* @param abort_fn See: apr_pool_create.
- * @param flags See: apr_pool_create.
+ * @param allocator See: apr_pool_create.
* @param file_line Where the function is called from.
* This is usually APR_POOL__FILE_LINE__.
* @remark Only available when APR_POOL_DEBUG is defined.