From 087bacb30f7b66fa39b7e9523d5c8bb60b384c6f Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 8 Jan 2013 15:11:22 +0100 Subject: [PATCH] Increase user-space stack to 512 KB. --- sortix/kernel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sortix/kernel.cpp b/sortix/kernel.cpp index f944d5d2..2786996e 100644 --- a/sortix/kernel.cpp +++ b/sortix/kernel.cpp @@ -526,7 +526,7 @@ static void InitThread(void* /*user*/) init.Reset(); - const size_t DEFAULT_STACK_SIZE = 64UL * 1024UL; + const size_t DEFAULT_STACK_SIZE = 512UL * 1024UL; size_t stacksize = 0; if ( !stacksize ) { stacksize = DEFAULT_STACK_SIZE; }