summaryrefslogtreecommitdiff
path: root/include/apr_pools.h
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2003-09-03 17:12:18 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2003-09-03 17:12:18 +0000
commit32e95e304d6b4dddb74fe00cfab2463d0dab0f30 (patch)
tree257cc125c3a76b5858650c50134ddf0cf297240b /include/apr_pools.h
parent77f54e1f1943bd53958a7a1a9f1e14d13ff7f7c0 (diff)
downloadlibapr-32e95e304d6b4dddb74fe00cfab2463d0dab0f30.tar.gz
axe these deprecated functions:
apr_allocator_get_mutex apr_allocator_get_owner apr_allocator_set_max_free apr_allocator_set_mutex apr_allocator_set_owner apr_pool_get_abort apr_pool_get_parent apr_pool_set_abort apr_pool_sub_make apr_signal_get_description git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64606 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_pools.h')
-rw-r--r--include/apr_pools.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/apr_pools.h b/include/apr_pools.h
index a19fe5f1f..d43b83e7c 100644
--- a/include/apr_pools.h
+++ b/include/apr_pools.h
@@ -275,17 +275,6 @@ APR_DECLARE(apr_status_t) apr_pool_create(apr_pool_t **newpool,
#endif
#endif
-/** @deprecated @see apr_pool_create_ex */
-#if APR_POOL_DEBUG
-#define apr_pool_sub_make(newpool, parent, abort_fn) \
- (void)apr_pool_create_ex_debug(newpool, parent, abort_fn, \
- NULL, \
- APR_POOL__FILE_LINE__)
-#else
-#define apr_pool_sub_make(newpool, parent, abort_fn) \
- (void)apr_pool_create_ex(newpool, parent, abort_fn, NULL)
-#endif
-
/**
* Find the pools allocator
* @param pool The pool to get the allocator from.
@@ -425,10 +414,6 @@ APR_DECLARE(void *) apr_pcalloc_debug(apr_pool_t *p, apr_size_t size,
APR_DECLARE(void) apr_pool_abort_set(apr_abortfunc_t abortfunc,
apr_pool_t *pool);
-/** @deprecated @see apr_pool_abort_set */
-APR_DECLARE(void) apr_pool_set_abort(apr_abortfunc_t abortfunc,
- apr_pool_t *pool);
-
/**
* Get the abort function associated with the specified pool.
* @param pool The pool for retrieving the abort function.
@@ -436,9 +421,6 @@ APR_DECLARE(void) apr_pool_set_abort(apr_abortfunc_t abortfunc,
*/
APR_DECLARE(apr_abortfunc_t) apr_pool_abort_get(apr_pool_t *pool);
-/** @deprecated @see apr_pool_abort_get */
-APR_DECLARE(apr_abortfunc_t) apr_pool_get_abort(apr_pool_t *pool);
-
/**
* Get the parent pool of the specified pool.
* @param pool The pool for retrieving the parent pool.
@@ -446,9 +428,6 @@ APR_DECLARE(apr_abortfunc_t) apr_pool_get_abort(apr_pool_t *pool);
*/
APR_DECLARE(apr_pool_t *) apr_pool_parent_get(apr_pool_t *pool);
-/** @deprecated @see apr_pool_parent_get */
-APR_DECLARE(apr_pool_t *) apr_pool_get_parent(apr_pool_t *pool);
-
/**
* Determine if pool a is an ancestor of pool b
* @param a The pool to search