diff options
author | Stefan Fritsch <sf@apache.org> | 2013-03-23 16:04:32 +0000 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2013-03-23 16:04:32 +0000 |
commit | fdbb812969d7f7cfe055c1fbec8e5d40a35eaf40 (patch) | |
tree | 7922a4638764a7b3f0f7c01de7ae650d5c246993 /memory/unix | |
parent | 85f2f3fb9fb7936df0aa0643c5196db345912f55 (diff) | |
download | apr-fdbb812969d7f7cfe055c1fbec8e5d40a35eaf40.tar.gz |
change pool debugging messages to be unique
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1460180 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'memory/unix')
-rw-r--r-- | memory/unix/apr_pools.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/memory/unix/apr_pools.c b/memory/unix/apr_pools.c index 9bbfd32ac..5fe0701c7 100644 --- a/memory/unix/apr_pools.c +++ b/memory/unix/apr_pools.c @@ -1455,7 +1455,7 @@ static void apr_pool_check_integrity(apr_pool_t *pool) if (!apr_pool_is_child_of(pool, global_pool)) { #if (APR_POOL_DEBUG & APR_POOL_DEBUG_VERBOSE_ALL) apr_pool_log_event(pool, "LIFE", - __FILE__ ":apr_pool_integrity check", 0); + __FILE__ ":apr_pool_integrity check [lifetime]", 0); #endif /* (APR_POOL_DEBUG & APR_POOL_DEBUG_VERBOSE_ALL) */ abort(); } @@ -1466,7 +1466,7 @@ static void apr_pool_check_integrity(apr_pool_t *pool) if (!apr_os_thread_equal(pool->owner, apr_os_thread_current())) { #if (APR_POOL_DEBUG & APR_POOL_DEBUG_VERBOSE_ALL) apr_pool_log_event(pool, "THREAD", - __FILE__ ":apr_pool_integrity check", 0); + __FILE__ ":apr_pool_integrity check [owner]", 0); #endif /* (APR_POOL_DEBUG & APR_POOL_DEBUG_VERBOSE_ALL) */ abort(); } @@ -1964,7 +1964,7 @@ APR_DECLARE(apr_status_t) apr_pool_create_unmanaged_ex_debug(apr_pool_t **newpoo *newpool = pool; #if (APR_POOL_DEBUG & APR_POOL_DEBUG_VERBOSE) - apr_pool_log_event(pool, "CREATE", file_line, 1); + apr_pool_log_event(pool, "CREATEU", file_line, 1); #endif /* (APR_POOL_DEBUG & APR_POOL_DEBUG_VERBOSE) */ return APR_SUCCESS; |