[svn:parrot] r39491 - in trunk: include/parrot src/gc

petdance at svn.parrot.org petdance at svn.parrot.org
Wed Jun 10 06:47:25 UTC 2009


Author: petdance
Date: Wed Jun 10 06:47:25 2009
New Revision: 39491
URL: https://trac.parrot.org/parrot/changeset/39491

Log:
more PARROT_OBSERVER decorations

Modified:
   trunk/include/parrot/datatypes.h
   trunk/src/gc/gc_private.h

Modified: trunk/include/parrot/datatypes.h
==============================================================================
--- trunk/include/parrot/datatypes.h	Wed Jun 10 06:46:42 2009	(r39490)
+++ trunk/include/parrot/datatypes.h	Wed Jun 10 06:47:25 2009	(r39491)
@@ -69,7 +69,7 @@
 
 /* &end_gen */
 struct _data_types {
-    const char *name;
+    PARROT_OBSERVER const char *name;
     int size;
 };
 

Modified: trunk/src/gc/gc_private.h
==============================================================================
--- trunk/src/gc/gc_private.h	Wed Jun 10 06:46:42 2009	(r39490)
+++ trunk/src/gc/gc_private.h	Wed Jun 10 06:47:25 2009	(r39491)
@@ -136,7 +136,7 @@
     struct Memory_Pool *mem_pool;
     size_t start_arena_memory;
     size_t end_arena_memory;
-    const char *name;
+    PARROT_OBSERVER const char *name;
 #if PARROT_GC_GMS
     struct _gc_gms_hdr marker;          /* limit of list */
     struct _gc_gms_hdr *black;          /* alive */


More information about the parrot-commits mailing list