From 94e740ae31934b75152b27ff84f3abdf552689c8 Mon Sep 17 00:00:00 2001 From: Vitor Santos Costa Date: Sun, 17 May 2009 09:41:34 -0700 Subject: [PATCH] reduce the initail amount of space for globals --- C/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C/exec.c b/C/exec.c index f773f3596..78e3ddb7e 100644 --- a/C/exec.c +++ b/C/exec.c @@ -1651,7 +1651,7 @@ Yap_InitYaamRegs(void) WPP = NULL; PREG_ADDR = NULL; #endif - Yap_AllocateDefaultArena(1024*1024, 2); + Yap_AllocateDefaultArena(128*1024, 2); Yap_PreAllocCodeSpace(); #ifdef CUT_C cut_c_initialize();