mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
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:
parent
ef6921d7c7
commit
d9e1a6c566
Notes:
sideshowbarker
2024-07-18 03:35:30 +09:00
Author: https://github.com/sin-ack Commit: https://github.com/SerenityOS/serenity/commit/d9e1a6c566 Pull-request: https://github.com/SerenityOS/serenity/pull/15428 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/AtkinsSJ Reviewed-by: https://github.com/BertalanD Reviewed-by: https://github.com/linusg Reviewed-by: https://github.com/timschumi
1 changed files with 1 additions and 1 deletions
|
@ -6,4 +6,4 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define PTHREAD_STACK_MAX (8 * 1024 * 1024) // 8MiB
|
||||
#define PTHREAD_STACK_MAX (32 * 1024 * 1024) // 32MiB
|
||||
|
|
Loading…
Reference in a new issue