[Freeswitch-svn] [commit] r12866 - freeswitch/trunk/src

FreeSWITCH SVN anthm at freeswitch.org
Wed Apr 1 09:51:23 PDT 2009


Author: anthm
Date: Wed Apr  1 11:51:23 2009
New Revision: 12866

Log:
tweak debug message

Modified:
   freeswitch/trunk/src/switch_core_memory.c

Modified: freeswitch/trunk/src/switch_core_memory.c
==============================================================================
--- freeswitch/trunk/src/switch_core_memory.c	(original)
+++ freeswitch/trunk/src/switch_core_memory.c	Wed Apr  1 11:51:23 2009
@@ -348,7 +348,7 @@
 #ifdef DEBUG_ALLOC2
 	switch_log_printf(SWITCH_CHANNEL_ID_LOG, file, func, line, NULL, SWITCH_LOG_CONSOLE, "New Pool\n");
 #endif
-	tmp = switch_core_sprintf(*pool, "%s:%d", func, line);
+	tmp = switch_core_sprintf(*pool, "%s:%d", file, line);
 	apr_pool_tag(*pool, tmp);
 
 
@@ -576,6 +576,7 @@
 	apr_allocator_mutex_set(my_allocator, my_mutex);
 	apr_pool_mutex_set(memory_manager.memory_pool, my_mutex);
 	apr_allocator_owner_set(my_allocator, memory_manager.memory_pool);
+	apr_pool_tag(memory_manager.memory_pool, "core_pool");
 #else
 	apr_pool_create(&memory_manager.memory_pool, NULL);
 	switch_assert(memory_manager.memory_pool != NULL);



More information about the Freeswitch-svn mailing list