[svn:parrot] r38575 - branches/gc_api/src/gc
whiteknight at svn.parrot.org
whiteknight at svn.parrot.org
Fri May 8 01:31:27 UTC 2009
Author: whiteknight
Date: Fri May 8 01:31:27 2009
New Revision: 38575
URL: https://trac.parrot.org/parrot/changeset/38575
Log:
[gc_api] move the global flag CONSERVATIVE_POINTER_CHASING out of the API
Modified:
branches/gc_api/src/gc/api.c
branches/gc_api/src/gc/mark_sweep.c
Modified: branches/gc_api/src/gc/api.c
==============================================================================
--- branches/gc_api/src/gc/api.c Fri May 8 01:28:30 2009 (r38574)
+++ branches/gc_api/src/gc/api.c Fri May 8 01:31:27 2009 (r38575)
@@ -45,9 +45,6 @@
#if ! DISABLE_GC_DEBUG
-/* Set when walking the system stack */
-int CONSERVATIVE_POINTER_CHASING = 0;
-
#endif
/*
Modified: branches/gc_api/src/gc/mark_sweep.c
==============================================================================
--- branches/gc_api/src/gc/mark_sweep.c Fri May 8 01:28:30 2009 (r38574)
+++ branches/gc_api/src/gc/mark_sweep.c Fri May 8 01:31:27 2009 (r38575)
@@ -138,6 +138,9 @@
#define POOL_MAX_BYTES 65536 * 128
+/* Set when walking the system stack */
+int CONSERVATIVE_POINTER_CHASING = 0;
+
/*
=item C<void Parrot_gc_ms_run(PARROT_INTERP, UINTVAL flags)>
More information about the parrot-commits
mailing list