[svn:parrot] r43838 - branches/gc_encapsulate_part2/src/gc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Wed Feb 10 00:23:20 UTC 2010


Author: mikehh
Date: Wed Feb 10 00:23:20 2010
New Revision: 43838
URL: https://trac.parrot.org/parrot/changeset/43838

Log:
fix previous commit - removed extra underscores

Modified:
   branches/gc_encapsulate_part2/src/gc/gc_ms.c

Modified: branches/gc_encapsulate_part2/src/gc/gc_ms.c
==============================================================================
--- branches/gc_encapsulate_part2/src/gc/gc_ms.c	Wed Feb 10 00:19:49 2010	(r43837)
+++ branches/gc_encapsulate_part2/src/gc/gc_ms.c	Wed Feb 10 00:23:20 2010	(r43838)
@@ -710,7 +710,7 @@
 void *
 gc_ms_allocate_pmc_attributes(PARROT_INTERP, ARGMOD(PMC *pmc))
 {
-    ASSERT_ARGS(gc_ms__allocate_pmc_attributes)
+    ASSERT_ARGS(gc_ms_allocate_pmc_attributes)
     const size_t attr_size = pmc->vtable->attr_size;
 #if GC_USE_FIXED_SIZE_ALLOCATOR
     PMC_Attribute_Pool * const pool = Parrot_gc_get_attribute_pool(interp,
@@ -1014,7 +1014,7 @@
 void *
 gc_ms_allocate_fixed_size_storage(PARROT_INTERP, size_t size)
 {
-    ASSERT_ARGS(gc__ms_allocate_fixed_size_storage)
+    ASSERT_ARGS(gc_ms_allocate_fixed_size_storage)
     PMC_Attribute_Pool *pool = NULL;
     const size_t idx = (size < sizeof (void *)) ? 0 : (size - sizeof (void *));
 
@@ -1042,7 +1042,7 @@
 void
 gc_ms_free_fixed_size_storage(PARROT_INTERP, size_t size, ARGMOD(void *data))
 {
-    ASSERT_ARGS(gc_ms__free_fixed_size_storage)
+    ASSERT_ARGS(gc_ms_free_fixed_size_storage)
 
     const size_t item_size = size < sizeof (void *) ? sizeof (void *) : size;
     const size_t idx   = size - sizeof (void *);


More information about the parrot-commits mailing list