From f3c1ba9092d70ae4fb423e649f0ce98346ce3961 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Sat, 6 Jul 2024 19:30:47 +0200 Subject: Increase the default arena page size --- src/alloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3