[svn:parrot] r49330 - branches/generational_gc/include/parrot
bacek at svn.parrot.org
bacek at svn.parrot.org
Sun Sep 26 03:42:09 UTC 2010
Author: bacek
Date: Sun Sep 26 03:42:09 2010
New Revision: 49330
URL: https://trac.parrot.org/parrot/changeset/49330
Log:
Add PObj flags to be used with GenGC
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:41:47 2010 (r49329)
+++ branches/generational_gc/include/parrot/pobj.h Sun Sep 26 03:42:09 2010 (r49330)
@@ -171,6 +171,9 @@
/* For debugging, report when this buffer gets moved around */
PObj_report_FLAG = POBJ_FLAG(22),
+ /* 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),
/* PMC specific FLAGs */
/* call object finalizer */
More information about the parrot-commits
mailing list