From 7a651dc9d17126b82d94d3d201a63531fe6c1165 Mon Sep 17 00:00:00 2001 From: Jesse McDonald Date: Sat, 10 Apr 2010 03:15:34 -0500 Subject: [PATCH] Update main app to use new gc_init() prototype w/ separate Gen-0 size. --- rosella.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rosella.c b/rosella.c index 62fff6a..45656d9 100644 --- a/rosella.c +++ b/rosella.c @@ -47,7 +47,7 @@ int main(int argc, char **argv) } #endif - gc_init(8*1024*1024, 16*1024*1024); + gc_init(6*1024*1024, 10*1024*1024, 16*1024*1024); builtin_init(); interpreter_init(); @@ -95,7 +95,7 @@ int main(int argc, char **argv) nl(); } -#if 0 +#if 1 nl(); fflush(stdout);