Kernel: Bump maximum pthread stack size to 32MiB

The Zig compiler asks for this much stack on its main thread via the use
of PT_GNU_STACK.
This commit is contained in:
sin-ack 2022-12-11 19:54:02 +00:00 committed by Andrew Kaster
parent ef6921d7c7
commit d9e1a6c566

View file

@ -6,4 +6,4 @@
#pragma once
#define PTHREAD_STACK_MAX (8 * 1024 * 1024) // 8MiB
#define PTHREAD_STACK_MAX (32 * 1024 * 1024) // 32MiB