From 7900d47589addba4231dd0bc5ae8815fb3213462 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 3 Mar 2016 23:21:09 -0500 Subject: [PATCH] Increase heap page to 32MB --- 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 a4e09788..d7c4ff39 100644 --- a/include/cyclone/types.h +++ b/include/cyclone/types.h @@ -29,7 +29,7 @@ #define STACK_SIZE 500000 // Size of a "page" on the heap (the second generation), in bytes. -#define HEAP_SIZE (10 * 1024 * 1024) +#define HEAP_SIZE (32 * 1024 * 1024) ///////////////////////////// // Major GC tuning parameters