From c0c18e3aa270082baf4eed03d2ed87a2f2f34aad Mon Sep 17 00:00:00 2001 From: danyabeerzun Date: Fri, 24 Jan 2020 17:06:49 +0300 Subject: [PATCH] turn off debug print and restore default heap size --- runtime/runtime.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/runtime.c b/runtime/runtime.c index 71fef5983..a3fa026aa 100644 --- a/runtime/runtime.c +++ b/runtime/runtime.c @@ -18,7 +18,7 @@ # define WORD_SIZE (CHAR_BIT * sizeof(int)) -# define DEBUG_PRINT 1 +/* # define DEBUG_PRINT 1 */ /* GC pool structure and data; declared here in order to allow debug print */ typedef struct { @@ -1171,8 +1171,8 @@ extern void __gc_root_scan_stack (); /* Mark-and-copy */ /* ======================================== */ -static size_t SPACE_SIZE = 32; -// static size_t SPACE_SIZE = 32 * 1024 * 100; +// static size_t SPACE_SIZE = 32; +static size_t SPACE_SIZE = 32 * 1024 * 100; // static size_t SPACE_SIZE = 128; // static size_t SPACE_SIZE = 1024 * 1024;