[svn:parrot] r49280 - trunk/src/gc

bacek at svn.parrot.org bacek at svn.parrot.org
Fri Sep 24 01:14:37 UTC 2010


Author: bacek
Date: Fri Sep 24 01:14:37 2010
New Revision: 49280
URL: https://trac.parrot.org/parrot/changeset/49280

Log:
Uncomment soon-to-be-used code in gc_ms2_finalize

Modified:
   trunk/src/gc/gc_ms2.c

Modified: trunk/src/gc/gc_ms2.c
==============================================================================
--- trunk/src/gc/gc_ms2.c	Thu Sep 23 23:48:14 2010	(r49279)
+++ trunk/src/gc/gc_ms2.c	Fri Sep 24 01:14:37 2010	(r49280)
@@ -645,12 +645,8 @@
 
     Parrot_gc_str_finalize(interp, &self->string_gc);
 
-    /* (replace c++ comments)
-     *
-     * Parrot_list_destroy(interp, self->objects);
-     * Parrot_list_destroy(interp, self->strings);
-     *
-     */
+    Parrot_list_destroy(interp, self->objects);
+    Parrot_list_destroy(interp, self->strings);
     Parrot_gc_pool_destroy(interp, self->pmc_allocator);
     Parrot_gc_pool_destroy(interp, self->string_allocator);
     Parrot_gc_fixed_allocator_destroy(interp, self->fixed_size_allocator);


More information about the parrot-commits mailing list