[svn:parrot] r40386 - trunk/src/gc
whiteknight at svn.parrot.org
whiteknight at svn.parrot.org
Sun Aug 2 14:45:28 UTC 2009
Author: whiteknight
Date: Sun Aug 2 14:45:28 2009
New Revision: 40386
URL: https://trac.parrot.org/parrot/changeset/40386
Log:
[TT #895] remove an errant debugging message that I committed last time. Thanks NotFound++
Modified:
trunk/src/gc/mark_sweep.c
Modified: trunk/src/gc/mark_sweep.c
==============================================================================
--- trunk/src/gc/mark_sweep.c Sun Aug 2 14:27:22 2009 (r40385)
+++ trunk/src/gc/mark_sweep.c Sun Aug 2 14:45:28 2009 (r40386)
@@ -1329,7 +1329,6 @@
(GC_FIXED_SIZE_POOL_SIZE - sizeof (PMC_Attribute_Arena)) / attrib_size;
const size_t num_objs = (num_objs_raw == 0)?(1):(num_objs_raw);
PMC_Attribute_Pool * const newpool = mem_internal_allocate_typed(PMC_Attribute_Pool);
- fprintf(stderr, "Pool %d: %d objs\n", attrib_size, num_objs);
newpool->attr_size = attrib_size;
newpool->total_objects = 0;
newpool->objects_per_alloc = num_objs;
More information about the parrot-commits
mailing list