From 35776a2bc39677c9ae714d086dd95ef6eb0ad5b5 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Sat, 5 Dec 2009 17:39:27 +0900 Subject: [PATCH] removing small maximum heap size from testing --- gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gc.c b/gc.c index c2933930..7b9307d6 100644 --- a/gc.c +++ b/gc.c @@ -14,7 +14,7 @@ /* the maximum heap size in bytes - if 0 there is no limit */ #ifndef SEXP_MAXIMUM_HEAP_SIZE -#define SEXP_MAXIMUM_HEAP_SIZE (4*1024*1024) +#define SEXP_MAXIMUM_HEAP_SIZE 0 #endif /* if after GC more than this percentage of memory is still in use, */