summaryrefslogtreecommitdiff
path: root/include/apr_allocator.h
diff options
context:
space:
mode:
authorSander Striker <striker@apache.org>2002-05-30 00:20:56 +0000
committerSander Striker <striker@apache.org>2002-05-30 00:20:56 +0000
commit962148b5d0a8c6a0b402b219e46b55a722d3c85d (patch)
tree8f1a4d4cc63d056a1174612326a7df21e8d789f4 /include/apr_allocator.h
parent23efe10118168e0056cab73755d9165a59c75c2e (diff)
downloadapr-962148b5d0a8c6a0b402b219e46b55a722d3c85d.tar.gz
Renames:
apr_allocator_set_owner -> apr_allocator_owner_set apr_allocator_get_owner -> apr_allocator_owner_get apr_allocator_set_mutex -> apr_allocator_mutex_set apr_allocator_get_mutex -> apr_allocator_mutex_get Suggested by: Cliff Woolley git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63444 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_allocator.h')
-rw-r--r--include/apr_allocator.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/apr_allocator.h b/include/apr_allocator.h
index a509d9ee8..fe548c625 100644
--- a/include/apr_allocator.h
+++ b/include/apr_allocator.h
@@ -144,14 +144,14 @@ APR_DECLARE(void) apr_allocator_free(apr_allocator_t *allocator,
* you can make a pool an owner, but if the pool doesn't use the allocator
* the allocator will never be destroyed.
*/
-APR_DECLARE(void) apr_allocator_set_owner(apr_allocator_t *allocator,
+APR_DECLARE(void) apr_allocator_owner_set(apr_allocator_t *allocator,
apr_pool_t *pool);
/**
* Get the current owner of the allocator
* @param allocator The allocator to get the owner from
*/
-APR_DECLARE(apr_pool_t *) apr_allocator_get_owner(apr_allocator_t *allocator);
+APR_DECLARE(apr_pool_t *) apr_allocator_owner_get(apr_allocator_t *allocator);
/**
@@ -171,14 +171,14 @@ APR_DECLARE(void) apr_allocator_set_max_free(apr_allocator_t *allocator,
* @param allocator The allocator to set the mutex for
* @param mutex The mutex
*/
-APR_DECLARE(void) apr_allocator_set_mutex(apr_allocator_t *allocator,
+APR_DECLARE(void) apr_allocator_mutex_set(apr_allocator_t *allocator,
apr_thread_mutex_t *mutex);
/**
* Get the mutex currently set for the allocator
* @param allocator The allocator
*/
-APR_DECLARE(apr_thread_mutex_t *) apr_allocator_get_mutex(
+APR_DECLARE(apr_thread_mutex_t *) apr_allocator_mutex_get(
apr_allocator_t *allocator);
#endif /* APR_HAS_THREADS */