[svn:parrot] r43447 - branches/gc_encapsulate/src/gc

bacek at svn.parrot.org bacek at svn.parrot.org
Wed Jan 13 22:06:56 UTC 2010


Author: bacek
Date: Wed Jan 13 22:06:56 2010
New Revision: 43447
URL: https://trac.parrot.org/parrot/changeset/43447

Log:
Fix Variable_Size_Pool *compact declaration.

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

Modified: branches/gc_encapsulate/src/gc/gc_private.h
==============================================================================
--- branches/gc_encapsulate/src/gc/gc_private.h	Wed Jan 13 22:06:36 2010	(r43446)
+++ branches/gc_encapsulate/src/gc/gc_private.h	Wed Jan 13 22:06:56 2010	(r43447)
@@ -156,7 +156,7 @@
 
 typedef struct Variable_Size_Pool {
     Memory_Block *top_block;
-    void (*compact)(PARROT_INTERP, Memory_Pools *mem_pools, struct Variable_Size_Pool *);
+    void (*compact)(PARROT_INTERP, struct Memory_Pools *mem_pools, struct Variable_Size_Pool *);
     size_t minimum_block_size;
     size_t total_allocated; /* total bytes allocated to this pool */
     size_t guaranteed_reclaimable;     /* bytes that can definitely be reclaimed*/


More information about the parrot-commits mailing list