[svn:parrot] r49332 - branches/generational_gc/include/parrot
bacek at svn.parrot.org
bacek at svn.parrot.org
Sun Sep 26 03:43:06 UTC 2010
Author: bacek
Date: Sun Sep 26 03:43:06 2010
New Revision: 49332
URL: https://trac.parrot.org/parrot/changeset/49332
Log:
Add one more Gen GC flag
Modified:
branches/generational_gc/include/parrot/pobj.h
Modified: branches/generational_gc/include/parrot/pobj.h
==============================================================================
--- branches/generational_gc/include/parrot/pobj.h Sun Sep 26 03:42:40 2010 (r49331)
+++ branches/generational_gc/include/parrot/pobj.h Sun Sep 26 03:43:06 2010 (r49332)
@@ -165,13 +165,14 @@
/* Set to true if the PObj has a custom mark routine */
PObj_custom_mark_FLAG = POBJ_FLAG(19),
/* Set if the PObj has a destroy method that must be called */
- PObj_custom_destroy_FLAG = POBJ_FLAG(21),
+ PObj_custom_destroy_FLAG = POBJ_FLAG(20),
/* For debugging, report when this buffer gets moved around */
- PObj_report_FLAG = POBJ_FLAG(22),
+ PObj_report_FLAG = POBJ_FLAG(21),
/* Flags used by generation GC to determine generation object belong */
- PObj_GC_generation_0_FLAG = POBJ_FLAG(23),
- PObj_GC_generation_1_FLAG = POBJ_FLAG(24),
+ PObj_GC_generation_0_FLAG = POBJ_FLAG(22),
+ PObj_GC_generation_1_FLAG = POBJ_FLAG(23),
+ PObj_GC_generation_2_FLAG = POBJ_FLAG(24),
/* PMC specific FLAGs */
/* call object finalizer */
More information about the parrot-commits
mailing list