mes: Bump default arena size.

Nobody likes it when the Scheme stack gets corrupted!

* src/gc.c (gc_init)[!__M2_PLANET__]: Set ARENA_SIZE to 2400000.
This commit is contained in:
Timothy Sample 2022-04-23 10:48:48 -06:00
parent 95c5103c35
commit 1c56860d50
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ gc_init ()
#if SYSTEM_LIBC
ARENA_SIZE = 100000000; /* 2.3GiB */
#elif ! __M2_PLANET__
ARENA_SIZE = 600000; /* 32b: 6MiB, 64b: 12 MiB */
ARENA_SIZE = 2400000; /* 32b: 24MiB, 64b: 48 MiB */
#else
ARENA_SIZE = 20000000;
#endif