浏览代码

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.
sin-ack 2 年之前
父节点
当前提交
d9e1a6c566
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Kernel/API/serenity_limits.h

+ 1 - 1
Kernel/API/serenity_limits.h

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