From 7155f174b7041908d65b4065ac1a66e858c6b95e Mon Sep 17 00:00:00 2001 From: theraven Date: Mon, 4 Jul 2011 12:21:23 +0000 Subject: [PATCH] Don't enable incremental collection. It seems to cause crashing. --- gc_boehm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gc_boehm.c b/gc_boehm.c index 96ac960..7c91caf 100644 --- a/gc_boehm.c +++ b/gc_boehm.c @@ -637,7 +637,7 @@ static void runFinalizers(void) PRIVATE void init_gc(void) { //GC_no_dls = 1; - GC_enable_incremental(); + //GC_enable_incremental(); GC_INIT(); char *envValue; // Dump GC stats on exit - uncomment when debugging.