[srvx-commits] CVS: services/src main.c,1.154,1.155
Brought to you by:
entrope
From: Entrope <en...@us...> - 2003-10-20 18:01:23
|
Update of /cvsroot/srvx/services/src In directory sc8-pr-cvs1:/tmp/cvs-serv5580/src Modified Files: main.c Log Message: relocate boehm-gc debug callback to a more useful place Index: main.c =================================================================== RCS file: /cvsroot/srvx/services/src/main.c,v retrieving revision 1.154 retrieving revision 1.155 diff -C2 -r1.154 -r1.155 *** main.c 1 Sep 2003 14:50:28 -0000 1.154 --- main.c 20 Oct 2003 16:20:09 -0000 1.155 *************** *** 719,726 **** daemon = 0; } - #endif - #if WITH_MALLOC_BOEHM_GC - GC_set_warn_proc(gc_warn_proc); - #endif if (replay_file) { --- 719,722 ---- *************** *** 774,780 **** log_init(); MAIN_LOG = log_register_type("srvx", "file:main.log"); ! if (debug) { log_debug(); ! } timeq_init(); modcmd_init(); --- 770,779 ---- log_init(); MAIN_LOG = log_register_type("srvx", "file:main.log"); ! if (debug) log_debug(); ! #if WITH_MALLOC_BOEHM_GC ! GC_set_warn_proc(gc_warn_proc); ! GC_enable_incremental(); ! #endif timeq_init(); modcmd_init(); |