Changes to increase garbage collector heap
[IRC.git] / Robust / src / Runtime / garbage.c
index f608e4d60c30ea72c8a03fa632ff30a9445827d2..9684923dc3928672dd04efd23c0ebc282b0ce494 100644 (file)
@@ -19,7 +19,7 @@
 
 #define NUMPTRS 100
 
-#define INITIALHEAPSIZE 10*1024
+#define INITIALHEAPSIZE 8192*1024
 #define GCPOINT(x) ((int)((x)*0.9))
 /* This define takes in how full the heap is initially and returns a new heap size to use */
 #define HEAPSIZE(x,y) (((int)((x)/0.6))+y)