[svn:parrot] r47380 - trunk/include/parrot

bacek at svn.parrot.org bacek at svn.parrot.org
Sat Jun 5 11:34:25 UTC 2010


Author: bacek
Date: Sat Jun  5 11:34:24 2010
New Revision: 47380
URL: https://trac.parrot.org/parrot/changeset/47380

Log:
Erm. Fix GC flags again to preserve equality of trace_stack and trace_normal flags.

Modified:
   trunk/include/parrot/gc_api.h

Modified: trunk/include/parrot/gc_api.h
==============================================================================
--- trunk/include/parrot/gc_api.h	Sat Jun  5 11:32:13 2010	(r47379)
+++ trunk/include/parrot/gc_api.h	Sat Jun  5 11:34:24 2010	(r47380)
@@ -94,9 +94,9 @@
 /* &end_gen */
 
 #define GC_trace_stack_FLAG    (UINTVAL)(1 << 1)   /* trace system areas and stack */
-#define GC_trace_normal_FLAG   (UINTVAL)(1 << 2)   /* the same */
-#define GC_lazy_FLAG           (UINTVAL)(1 << 3)   /* timely destruction run */
-#define GC_finish_FLAG         (UINTVAL)(1 << 4)   /* on Parrot exit: mark (almost) all PMCs dead and */
+#define GC_trace_normal_FLAG   (UINTVAL)(1 << 1)   /* the same */
+#define GC_lazy_FLAG           (UINTVAL)(1 << 2)   /* timely destruction run */
+#define GC_finish_FLAG         (UINTVAL)(1 << 3)   /* on Parrot exit: mark (almost) all PMCs dead and */
                                                    /* garbage collect. */
 
 /* HEADERIZER BEGIN: src/gc/api.c */


More information about the parrot-commits mailing list