From 343c2210da3e2565210e3bae6a36d7d6806df194 Mon Sep 17 00:00:00 2001 From: Brian West Date: Sun, 4 Mar 2007 01:47:08 +0000 Subject: [PATCH] fix comments git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4442 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/switch_core.c b/src/switch_core.c index f940762eb0..9a30285818 100644 --- a/src/switch_core.c +++ b/src/switch_core.c @@ -40,7 +40,7 @@ #include #endif -//#define DEBUG_ALLOC +/* #define DEBUG_ALLOC */ #define DO_EVENTS #ifdef CRASH_PROT @@ -3684,7 +3684,7 @@ SWITCH_DECLARE(void *) switch_core_alloc(switch_memory_pool_t *pool, switch_size #ifdef DEBUG_ALLOC switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Allocate %d\n", memory); - //assert(memory < 600000); + /* assert(memory < 600000); */ #endif if ((ptr = apr_palloc(pool, memory)) != 0) { @@ -4615,7 +4615,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_destroy(void) if (runtime.memory_pool) { apr_pool_destroy(runtime.memory_pool); - //apr_terminate(); + /* apr_terminate(); */ } return SWITCH_STATUS_SUCCESS;