From 9fd93710a18589e299169f07a1140f52801f887c Mon Sep 17 00:00:00 2001 From: Martin Eyben Date: Tue, 6 May 2025 17:47:08 +0200 Subject: [PATCH] fix: stack size --- src/thread/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread/thread.c b/src/thread/thread.c index 69621b4..5b4fa6c 100644 --- a/src/thread/thread.c +++ b/src/thread/thread.c @@ -33,7 +33,7 @@ #endif #ifndef STACK_SIZE -#define STACK_SIZE 128 * 1024 +#define STACK_SIZE 1024 #endif // Variables used to clean up everything at the end of the processus