[svn:parrot] r49047 - in branches/string_gc_encapsulate: config/gen/makefiles src/gc

bacek at svn.parrot.org bacek at svn.parrot.org
Thu Sep 16 10:58:16 UTC 2010


Author: bacek
Date: Thu Sep 16 10:58:15 2010
New Revision: 49047
URL: https://trac.parrot.org/parrot/changeset/49047

Log:
Add empty file for future String GC

Added:
   branches/string_gc_encapsulate/src/gc/string_gc.c
Modified:
   branches/string_gc_encapsulate/config/gen/makefiles/root.in

Modified: branches/string_gc_encapsulate/config/gen/makefiles/root.in
==============================================================================
--- branches/string_gc_encapsulate/config/gen/makefiles/root.in	Thu Sep 16 08:50:03 2010	(r49046)
+++ branches/string_gc_encapsulate/config/gen/makefiles/root.in	Thu Sep 16 10:58:15 2010	(r49047)
@@ -464,6 +464,7 @@
     src/gc/gc_inf$(O) \
     src/gc/mark_sweep$(O) \
     src/gc/system$(O) \
+    src/gc/string_gc$(O) \
     src/global_setup$(O) \
     src/hash$(O) \
     src/hll$(O) \
@@ -1300,6 +1301,9 @@
 src/gc/alloc_resources$(O) : $(PARROT_H_HEADERS) \
 	src/gc/gc_private.h src/gc/alloc_resources.c
 
+src/gc/string_gc$(O) : $(PARROT_H_HEADERS) \
+	src/gc/gc_private.h src/gc/string_gc.c
+
 src/hll$(O) : $(PARROT_H_HEADERS) src/hll.str $(INC_DIR)/dynext.h src/hll.c
 
 src/platform$(O) : $(PARROT_H_HEADERS) src/platform.c

Added: branches/string_gc_encapsulate/src/gc/string_gc.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/string_gc_encapsulate/src/gc/string_gc.c	Thu Sep 16 10:58:15 2010	(r49047)
@@ -0,0 +1,40 @@
+/*
+Copyright (C) 2010, Parrot Foundation.
+$Id$
+
+=head1 NAME
+
+src/gc/string_gc.c - String GC subsystem.
+
+=head1 DESCRIPTION
+
+GC subsystem to manage STRINGs.
+
+=head2 Parrot Memory Management Code
+
+=over 4
+
+=cut
+
+*/
+
+
+/*
+
+=back
+
+=head1 SEE ALSO
+
+F<src/gc/memory.c>.
+F<src/gc/alloc_resources.c>.
+
+=cut
+
+*/
+
+/*
+ * Local variables:
+ *   c-file-style: "parrot"
+ * End:
+ * vim: expandtab shiftwidth=4:
+ */


More information about the parrot-commits mailing list