[svn:parrot] r43925 - branches/boehm_gc_2/src/gc

bacek at svn.parrot.org bacek at svn.parrot.org
Sat Feb 13 07:14:19 UTC 2010


Author: bacek
Date: Sat Feb 13 07:14:19 2010
New Revision: 43925
URL: https://trac.parrot.org/parrot/changeset/43925

Log:
Put void* gc_private into GC_Subsystem

Modified:
   branches/boehm_gc_2/src/gc/gc_private.h

Modified: branches/boehm_gc_2/src/gc/gc_private.h
==============================================================================
--- branches/boehm_gc_2/src/gc/gc_private.h	Sat Feb 13 07:14:02 2010	(r43924)
+++ branches/boehm_gc_2/src/gc/gc_private.h	Sat Feb 13 07:14:19 2010	(r43925)
@@ -149,11 +149,9 @@
      *These will be called via the GC API functions Parrot_gc_func_name
      *e.g. read barrier && write barrier hooks can go here later ...*/
 
-    /* Holds system-specific data structures
-     * unused right now, but this is where it should go if we need them ...
-      union {
-      } gc_private;
-     */
+    /* Holds system-specific data structures */
+    void *gc_private;
+
 } GC_Subsystem;
 
 typedef struct Memory_Block {


More information about the parrot-commits mailing list