rbb 2002/12/10 11:59:14
Modified: include apr_allocator.h
Log:
These can't be moved to a private header file. They are used by
apr-util, which means that they must be public APIs.
Revision Changes Path
1.12 +0 -6 apr/include/apr_allocator.h
Index: apr_allocator.h
===================================================================
RCS file: /home/cvs/apr/include/apr_allocator.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- apr_allocator.h 10 Nov 2002 08:35:16 -0000 1.11
+++ apr_allocator.h 10 Dec 2002 19:59:14 -0000 1.12
@@ -118,9 +118,6 @@
* @param size The size of the mem to allocate (excluding the
* memnode structure)
*/
-/*
- * XXX: Move this to a private header file
- */
APR_DECLARE(apr_memnode_t *) apr_allocator_alloc(apr_allocator_t *allocator,
apr_size_t size);
@@ -128,9 +125,6 @@
* Free a block of mem, giving it back to the allocator
* @param allocator The allocator to give the mem back to
* @param memnode The memory node to return
- */
-/*
- * XXX: Move this to a private header file
*/
APR_DECLARE(void) apr_allocator_free(apr_allocator_t *allocator,
apr_memnode_t *memnode);