[svn:parrot] r43334 - branches/boehm_gc/src

bacek at svn.parrot.org bacek at svn.parrot.org
Thu Dec 31 06:54:33 UTC 2009


Author: bacek
Date: Thu Dec 31 06:54:33 2009
New Revision: 43334
URL: https://trac.parrot.org/parrot/changeset/43334

Log:
Don't do incremental collect by default. It's not always feasible.

Modified:
   branches/boehm_gc/src/main.c

Modified: branches/boehm_gc/src/main.c
==============================================================================
--- branches/boehm_gc/src/main.c	Thu Dec 31 06:54:16 2009	(r43333)
+++ branches/boehm_gc/src/main.c	Thu Dec 31 06:54:33 2009	(r43334)
@@ -46,8 +46,9 @@
     int         status;
 
 #ifdef PARROR_HAS_BOEHM_GC
-    GC_init();
-    GC_enable_incremental();
+    GC_INIT();
+    /*** We have to provide command-line arg to enable it. */
+    /*** GC_enable_incremental(); */
 #endif
 
     /* internationalization setup */


More information about the parrot-commits mailing list