From 64e50829b79f570821c813f0d61e33a7b8ba3ffc Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Wed, 25 Jan 2006 06:26:31 +0000 Subject: [PATCH] double default heap sizes on amd64 --- native/factor.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/native/factor.c b/native/factor.c index 125caa53d3..36a69d3d81 100644 --- a/native/factor.c +++ b/native/factor.c @@ -40,12 +40,12 @@ INLINE bool factor_arg(const char* str, const char* arg, CELL* value) int main(int argc, char** argv) { char *image; - CELL ds_size = 2048; - CELL cs_size = 2048; + CELL ds_size = 512; + CELL cs_size = 512; CELL generations = 2; - CELL young_size = 8; - CELL aging_size = 16; - CELL code_size = 4; + CELL young_size = 2 * CELLS; + CELL aging_size = 4 * CELLS; + CELL code_size = CELLS; CELL literal_size = 128; CELL args; CELL i;