[svn:parrot] r44411 - branches/boehm_gc_2/t/src

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Feb 23 21:04:25 UTC 2010


Author: bacek
Date: Tue Feb 23 21:04:24 2010
New Revision: 44411
URL: https://trac.parrot.org/parrot/changeset/44411

Log:
Use GC allocations

Modified:
   branches/boehm_gc_2/t/src/extend.t

Modified: branches/boehm_gc_2/t/src/extend.t
==============================================================================
--- branches/boehm_gc_2/t/src/extend.t	Tue Feb 23 21:03:53 2010	(r44410)
+++ branches/boehm_gc_2/t/src/extend.t	Tue Feb 23 21:04:24 2010	(r44411)
@@ -875,7 +875,7 @@
     while (node) {
         handler_node_t * const next = node->next;
         (node->function)(interp, status, node->arg);
-        mem_sys_free(node);
+        mem_gc_free(interp, node);
         node = next;
     }
 }


More information about the parrot-commits mailing list