Try reducing heap size to 16 MB / page

This commit is contained in:
Justin Ethier 2016-03-26 00:21:06 -04:00
parent d7b5cda3ae
commit 5f5d16a03a

View file

@ -29,7 +29,7 @@
#define STACK_SIZE 500000 #define STACK_SIZE 500000
// Size of a "page" on the heap (the second generation), in bytes. // Size of a "page" on the heap (the second generation), in bytes.
#define HEAP_SIZE (32 * 1024 * 1024) #define HEAP_SIZE (16 * 1024 * 1024)
///////////////////////////// /////////////////////////////
// Major GC tuning parameters // Major GC tuning parameters