From 3431e37e0e025367a2084de0d2793d73a797df09 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 3 Aug 2018 11:46:23 -0400 Subject: [PATCH] Experiment with using a lower peak heap size --- include/cyclone/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cyclone/types.h b/include/cyclone/types.h index 22f3562a..dc6dac99 100644 --- a/include/cyclone/types.h +++ b/include/cyclone/types.h @@ -102,7 +102,7 @@ typedef unsigned char tag_type; #define INITIAL_HEAP_SIZE (3 * 1024 * 1024) /** Normal size of a heap page */ -#define HEAP_SIZE (32 * 1024 * 1024) +#define HEAP_SIZE (8 * 1024 * 1024) // End heap page size parameters ////////////////////////////////