[svn:parrot] r43324 - branches/boehm_gc/src/gc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Wed Dec 30 16:40:16 UTC 2009
Author: mikehh
Date: Wed Dec 30 16:40:15 2009
New Revision: 43324
URL: https://trac.parrot.org/parrot/changeset/43324
Log:
fix codetest failure - no c++ comments (highlighted with /*** .. */)
Modified:
branches/boehm_gc/src/gc/gc_boehm.c
Modified: branches/boehm_gc/src/gc/gc_boehm.c
==============================================================================
--- branches/boehm_gc/src/gc/gc_boehm.c Wed Dec 30 16:33:19 2009 (r43323)
+++ branches/boehm_gc/src/gc/gc_boehm.c Wed Dec 30 16:40:15 2009 (r43324)
@@ -241,7 +241,7 @@
static void
gc_boehm_finalize_cb(GC_PTR obj, GC_PTR user_data)
{
- //fprintf(stderr, "Finalize %p (%p)\n", obj, interp);
+ /*** fprintf(stderr, "Finalize %p (%p)\n", obj, interp); */
PMC *pmc = (PMC*)obj;
Parrot_Interp interp = (Parrot_Interp)user_data;
@@ -270,8 +270,8 @@
{
ASSERT_ARGS(Parrot_gc_boehm_init)
- //GC_init();
- //GC_enable_incremental();
+ /*** GC_init(); */
+ /*** GC_enable_incremental(); */
interp->gc_sys->do_gc_mark = gc_boehm_mark_and_sweep;
interp->gc_sys->finalize_gc_system = NULL;
More information about the parrot-commits
mailing list