summaryrefslogtreecommitdiff
path: root/memory
diff options
context:
space:
mode:
authorMladen Turk <mturk@apache.org>2009-07-18 14:50:57 +0000
committerMladen Turk <mturk@apache.org>2009-07-18 14:50:57 +0000
commit58ffeaf8ae54779a6b5d0a56ca58ac33782fd2bf (patch)
tree82cd42e077127fa6346633e1f049844324a7766f /memory
parent323298079ec44bc986cd96b71f02d99673768cdc (diff)
downloadapr-58ffeaf8ae54779a6b5d0a56ca58ac33782fd2bf.tar.gz
Add missing debug unmanaged fn thunk
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@795384 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'memory')
-rw-r--r--memory/unix/apr_pools.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/memory/unix/apr_pools.c b/memory/unix/apr_pools.c
index 8bdce908e..9690262e6 100644
--- a/memory/unix/apr_pools.c
+++ b/memory/unix/apr_pools.c
@@ -2237,6 +2237,14 @@ APR_DECLARE(apr_status_t) apr_pool_create_ex_debug(apr_pool_t **newpool,
return apr_pool_create_ex(newpool, parent, abort_fn, allocator);
}
+APR_DECLARE(apr_status_t) apr_pool_create_unmanaged_ex_debug(apr_pool_t **newpool,
+ apr_abortfunc_t abort_fn,
+ apr_allocator_t *allocator,
+ const char *file_line)
+{
+ return apr_pool_create_unmanaged_ex(newpool, abort_fn, allocator);
+}
+
#else /* APR_POOL_DEBUG */
#undef apr_palloc