[svn:parrot] r47376 - branches/gc_massacre/src/gc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sat Jun 5 08:23:51 UTC 2010


Author: mikehh
Date: Sat Jun  5 08:23:50 2010
New Revision: 47376
URL: https://trac.parrot.org/parrot/changeset/47376

Log:
add documentation

Modified:
   branches/gc_massacre/src/gc/gc_ms2.c

Modified: branches/gc_massacre/src/gc/gc_ms2.c
==============================================================================
--- branches/gc_massacre/src/gc/gc_ms2.c	Sat Jun  5 08:04:20 2010	(r47375)
+++ branches/gc_massacre/src/gc/gc_ms2.c	Sat Jun  5 08:23:50 2010	(r47376)
@@ -704,6 +704,16 @@
     return gc_ms2_is_ptr_owned(interp, ptr, self->pmc_allocator, self->objects);
 }
 
+/*
+
+=item C<static void gc_ms2_sweep_pmc_cb(PARROT_INTERP, PObj *obj)>
+
+destroy pmc *obj
+
+=cut
+
+*/
+
 static void
 gc_ms2_sweep_pmc_cb(PARROT_INTERP, ARGIN(PObj *obj))
 {
@@ -755,6 +765,16 @@
     }
 }
 
+/*
+
+=item C<static int gc_ms2_is_string_ptr(PARROT_INTERP, void *ptr)>
+
+establish if string *ptr is owned
+
+=cut
+
+*/
+
 static int
 gc_ms2_is_string_ptr(PARROT_INTERP, ARGIN_NULLOK(void *ptr))
 {
@@ -785,6 +805,16 @@
     }
 }
 
+/*
+
+=item C<static void gc_ms2_sweep_string_cb(PARROT_INTERP, PObj *obj)>
+
+destroy string *obj
+
+=cut
+
+*/
+
 static void
 gc_ms2_sweep_string_cb(PARROT_INTERP, ARGIN(PObj *obj))
 {


More information about the parrot-commits mailing list