Sfoglia il codice sorgente

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 anni fa
parent
commit
d9e1a6c566
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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