diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-07-06 19:30:47 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-07-06 19:30:47 +0200 |
commit | f3c1ba9092d70ae4fb423e649f0ce98346ce3961 (patch) | |
tree | ceae59e1d4312ba3c09d70b54a34408666b76b37 /src | |
parent | 65e54ead0afd0c6d14859dcb06919357dff109f3 (diff) |
Increase the default arena page size
Diffstat (limited to 'src')
-rw-r--r-- | src/alloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.h b/src/alloc.h index 8ac1f1f..ee6842a 100644 --- a/src/alloc.h +++ b/src/alloc.h @@ -11,7 +11,7 @@ #if DEBUG # define _ARENA_DFLT_CAP (8) #else -# define _ARENA_DFLT_CAP (2 * 1024) +# define _ARENA_DFLT_CAP (64 * 1024) #endif typedef struct _arena *arena_t; |