[svn:parrot] r49058 - branches/string_gc_encapsulate/src/gc

bacek at svn.parrot.org bacek at svn.parrot.org
Thu Sep 16 13:20:20 UTC 2010


Author: bacek
Date: Thu Sep 16 13:20:20 2010
New Revision: 49058
URL: https://trac.parrot.org/parrot/changeset/49058

Log:
[cage] Add documentation.

Modified:
   branches/string_gc_encapsulate/src/gc/gc_ms.c

Modified: branches/string_gc_encapsulate/src/gc/gc_ms.c
==============================================================================
--- branches/string_gc_encapsulate/src/gc/gc_ms.c	Thu Sep 16 12:46:45 2010	(r49057)
+++ branches/string_gc_encapsulate/src/gc/gc_ms.c	Thu Sep 16 13:20:20 2010	(r49058)
@@ -577,6 +577,25 @@
     Parrot_gc_str_compact_pool(interp, &interp->mem_pools->string_gc);
 }
 
+/*
+
+=item C<void gc_ms_allocate_string_storage(PARROT_INTERP, STRING *str, size_t
+size)>
+
+=item C<void gc_ms_reallocate_string_storage(PARROT_INTERP, STRING *str, size_t
+size)>
+
+=item C<void gc_ms_allocate_buffer_storage(PARROT_INTERP, Buffer *str, size_t
+size)>
+
+=item C<void gc_ms_reallocate_buffer_storage(PARROT_INTERP, Buffer *str, size_t
+size)>
+
+Functions for allocating strings/buffers storage.
+
+=cut
+*/
+
 void
 gc_ms_allocate_string_storage(PARROT_INTERP, ARGIN(STRING *str), size_t size)
 {


More information about the parrot-commits mailing list