Added manual invocation of garbage collector via System.gc()
[IRC.git] / Robust / src / Runtime / garbage.h
index d8b561260999dc525fdb941ee7eb30b6f6a29975..2290d9729ab808f5ef8d226126b428c1727d8e6d 100644 (file)
@@ -9,6 +9,15 @@ struct garbagelist {
   void * array[]; 
 };
 
+extern void * curr_heapbase;
+extern void * curr_heapptr;
+extern void * curr_heapgcpoint;
+extern void * curr_heaptop;
+
+extern void * to_heapbase;
+extern void * to_heapptr;
+extern void * to_heaptop;
+
 struct listitem {
   struct listitem * prev;
   struct listitem * next;