mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Increase user-space stack to 512 KB.
This commit is contained in:
parent
38b146472e
commit
087bacb30f
1 changed files with 1 additions and 1 deletions
|
@ -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; }
|
||||
|
|
Loading…
Reference in a new issue