[svn:parrot] r49666 - trunk/src/gc
chromatic at svn.parrot.org
chromatic at svn.parrot.org
Mon Oct 25 07:13:35 UTC 2010
Author: chromatic
Date: Mon Oct 25 07:13:34 2010
New Revision: 49666
URL: https://trac.parrot.org/parrot/changeset/49666
Log:
[GC] Fixed copy and paste errors in MS2 GC.
Modified:
trunk/src/gc/gc_ms2.c
Modified: trunk/src/gc/gc_ms2.c
==============================================================================
--- trunk/src/gc/gc_ms2.c Mon Oct 25 03:22:15 2010 (r49665)
+++ trunk/src/gc/gc_ms2.c Mon Oct 25 07:13:34 2010 (r49666)
@@ -1188,7 +1188,7 @@
ARGIN(Pool_Allocator *pool),
ARGIN(Linked_List *list))
{
- ASSERT_ARGS(gc_ms2_sweep_pool)
+ ASSERT_ARGS(gc_ms2_sweep_pmc_pool)
List_Item_Header *tmp = list->first;
while (tmp) {
@@ -1229,7 +1229,7 @@
ARGIN(Pool_Allocator *pool),
ARGIN(Linked_List *list))
{
- ASSERT_ARGS(gc_ms2_sweep_pool)
+ ASSERT_ARGS(gc_ms2_destroy_pmc_pool)
List_Item_Header *tmp = list->first;
while (tmp) {
@@ -1263,7 +1263,7 @@
ARGIN(Pool_Allocator *pool),
ARGIN(Linked_List *list))
{
- ASSERT_ARGS(gc_ms2_sweep_pool)
+ ASSERT_ARGS(gc_ms2_sweep_string_pool)
List_Item_Header *tmp = list->first;
MarkSweep_GC *self = (MarkSweep_GC *)interp->gc_sys->gc_private;
More information about the parrot-commits
mailing list