summaryrefslogtreecommitdiff
path: root/memory
diff options
context:
space:
mode:
authorstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2002-05-30 00:20:56 +0000
committerstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2002-05-30 00:20:56 +0000
commit1c2612296dee14842c4285a8c074c3c6a9933391 (patch)
tree8f1a4d4cc63d056a1174612326a7df21e8d789f4 /memory
parenta8e1af91d15d3b6537f727680373d4523cb6fad2 (diff)
downloadlibapr-1c2612296dee14842c4285a8c074c3c6a9933391.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: http://svn.apache.org/repos/asf/apr/apr/trunk@63444 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'memory')
-rw-r--r--memory/unix/apr_pools.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/memory/unix/apr_pools.c b/memory/unix/apr_pools.c
index 8bd0f92e0..01ff5ad3b 100644
--- a/memory/unix/apr_pools.c
+++ b/memory/unix/apr_pools.c
@@ -142,26 +142,26 @@ APR_DECLARE(void) apr_allocator_destroy(apr_allocator_t *allocator)
}
#if APR_HAS_THREADS
-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)
{
allocator->mutex = mutex;
}
-APR_DECLARE(apr_thread_mutex_t *) apr_allocator_get_mutex(
+APR_DECLARE(apr_thread_mutex_t *) apr_allocator_mutex_get(
apr_allocator_t *allocator)
{
return allocator->mutex;
}
#endif /* APR_HAS_THREADS */
-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)
{
allocator->owner = pool;
}
-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)
{
return allocator->owner;
}
@@ -174,7 +174,7 @@ APR_DECLARE(void) apr_allocator_set_max_free(apr_allocator_t *allocator,
#if APR_HAS_THREADS
apr_thread_mutex_t *mutex;
- mutex = apr_allocator_get_mutex(allocator);
+ mutex = apr_allocator_mutex_get(allocator);
if (mutex != NULL)
apr_thread_mutex_lock(mutex);
#endif /* APR_HAS_THREADS */
@@ -553,11 +553,11 @@ APR_DECLARE(apr_status_t) apr_pool_initialize(void)
return rv;
}
- apr_allocator_set_mutex(global_allocator, mutex);
+ apr_allocator_mutex_set(global_allocator, mutex);
}
#endif /* APR_HAS_THREADS */
- apr_allocator_set_owner(global_allocator, global_pool);
+ apr_allocator_owner_set(global_allocator, global_pool);
return APR_SUCCESS;
}
@@ -754,7 +754,7 @@ APR_DECLARE(void) apr_pool_destroy(apr_pool_t *pool)
#if APR_HAS_THREADS
apr_thread_mutex_t *mutex;
- if ((mutex = apr_allocator_get_mutex(pool->parent->allocator)) != NULL)
+ if ((mutex = apr_allocator_mutex_get(pool->parent->allocator)) != NULL)
apr_thread_mutex_lock(mutex);
#endif /* APR_HAS_THREADS */
@@ -775,11 +775,11 @@ APR_DECLARE(void) apr_pool_destroy(apr_pool_t *pool)
*active->ref = NULL;
#if APR_HAS_THREADS
- if (apr_allocator_get_owner(allocator) == pool) {
+ if (apr_allocator_owner_get(allocator) == pool) {
/* Make sure to remove the lock, since it is highly likely to
* be invalid now.
*/
- apr_allocator_set_mutex(allocator, NULL);
+ apr_allocator_mutex_set(allocator, NULL);
}
#endif /* APR_HAS_THREADS */
@@ -793,7 +793,7 @@ APR_DECLARE(void) apr_pool_destroy(apr_pool_t *pool)
* and the allocator). Don't worry about destroying the optional mutex
* in the allocator, it will have been destroyed by the cleanup function.
*/
- if (apr_allocator_get_owner(allocator) == pool) {
+ if (apr_allocator_owner_get(allocator) == pool) {
apr_allocator_destroy(allocator);
}
}
@@ -848,7 +848,7 @@ APR_DECLARE(apr_status_t) apr_pool_create_ex(apr_pool_t **newpool,
#if APR_HAS_THREADS
apr_thread_mutex_t *mutex;
- if ((mutex = apr_allocator_get_mutex(allocator)) != NULL)
+ if ((mutex = apr_allocator_mutex_get(allocator)) != NULL)
apr_thread_mutex_lock(mutex);
#endif /* APR_HAS_THREADS */
@@ -1421,7 +1421,7 @@ APR_DECLARE(void) apr_pool_destroy_debug(apr_pool_t *pool,
}
if (pool->allocator != NULL
- && apr_allocator_get_owner(pool->allocator) == pool) {
+ && apr_allocator_owner_get(pool->allocator) == pool) {
apr_allocator_destroy(pool->allocator);
}