[svn:parrot] r43893 - branches/boehm_gc_2/src/gc

bacek at svn.parrot.org bacek at svn.parrot.org
Thu Feb 11 12:47:16 UTC 2010


Author: bacek
Date: Thu Feb 11 12:47:15 2010
New Revision: 43893
URL: https://trac.parrot.org/parrot/changeset/43893

Log:
Initialize Boehm GC in gc_init.

Modified:
   branches/boehm_gc_2/src/gc/api.c

Modified: branches/boehm_gc_2/src/gc/api.c
==============================================================================
--- branches/boehm_gc_2/src/gc/api.c	Thu Feb 11 12:43:39 2010	(r43892)
+++ branches/boehm_gc_2/src/gc/api.c	Thu Feb 11 12:47:15 2010	(r43893)
@@ -269,6 +269,9 @@
       case INF:
         Parrot_gc_inf_init(interp);
         break;
+      case BOEHM:
+        Parrot_gc_boehm_init(interp);
+        break;
       default:
         /*die horribly because of invalid GC core specified*/
         break;


More information about the parrot-commits mailing list