core: Update default memory settings.

* src/mes.c (MAX_ARENA_SIZE)[__MESC__]: Set to maximum 172100000.
This commit is contained in:
Jan Nieuwenhuizen 2018-04-11 20:46:06 +02:00
parent b65e57be31
commit 5b30d234cb
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 3 additions and 4 deletions

View File

@ -26,13 +26,12 @@
int ARENA_SIZE = 20000000; // 32B: 100 MiB, 64b: 200 MiB int ARENA_SIZE = 20000000; // 32B: 100 MiB, 64b: 200 MiB
#if __MESC__ #if __MESC__
//int MAX_ARENA_SIZE = 89478485; // 32b: ~1GiB int MAX_ARENA_SIZE = 172100000; // 32b: ~ 2GiB
int MAX_ARENA_SIZE = 80000000; // 32b: ~1GiB
#else #else
int MAX_ARENA_SIZE = 200000000; // 32b: 2GiB, 64b: 4GiB int MAX_ARENA_SIZE = 200000000; // 32b: 2.3GiB, 64b: 4.6GiB
#endif #endif
int GC_SAFETY = 2000; int GC_SAFETY = 50000;
char *g_arena = 0; char *g_arena = 0;
typedef int SCM; typedef int SCM;