aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-07-06 19:30:47 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-07-06 19:30:47 +0200
commitf3c1ba9092d70ae4fb423e649f0ce98346ce3961 (patch)
treeceae59e1d4312ba3c09d70b54a34408666b76b37
parent65e54ead0afd0c6d14859dcb06919357dff109f3 (diff)
Increase the default arena page size
-rw-r--r--src/alloc.h2
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;