From d9648c8bac5619cf758179cf27a21d6ac1c37613 Mon Sep 17 00:00:00 2001 From: Tenari Date: Thu, 4 Jun 2026 07:54:48 -0500 Subject: [PATCH] use larger scratch size to accommodate u16 sized message buffers since im lazy --- all.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/all.h b/all.h index 3378a4a..1ab3f4c 100644 --- a/all.h +++ b/all.h @@ -563,7 +563,7 @@ typedef struct Cond { pthread_cond_t cond; } Cond; -#define M_SCRATCH_SIZE KB(16) +#define M_SCRATCH_SIZE KB(64) typedef struct ScratchFreeListNode ScratchFreeListNode; struct ScratchFreeListNode { ScratchFreeListNode* next;