[svn:parrot] r49653 - branches/generational_gc/src/gc

bacek at svn.parrot.org bacek at svn.parrot.org
Sun Oct 24 21:08:32 UTC 2010


Author: bacek
Date: Sun Oct 24 21:08:31 2010
New Revision: 49653
URL: https://trac.parrot.org/parrot/changeset/49653

Log:
Reduce gc_threshold dramatically to enforce GC collecting for debugging reasons

Modified:
   branches/generational_gc/src/gc/gc_ms2.c

Modified: branches/generational_gc/src/gc/gc_ms2.c
==============================================================================
--- branches/generational_gc/src/gc/gc_ms2.c	Sun Oct 24 21:08:21 2010	(r49652)
+++ branches/generational_gc/src/gc/gc_ms2.c	Sun Oct 24 21:08:31 2010	(r49653)
@@ -627,7 +627,7 @@
 
         /* Collect every 256M allocated. */
         /* Hardcode for now. Will be configured via CLI */
-        self->gc_threshold = 16 * 1024 * 1024;
+        self->gc_threshold = 0.01 * 1024 * 1024;
     }
     interp->gc_sys->gc_private = self;
 


More information about the parrot-commits mailing list