We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 240a4da + 38cf49d commit c82b88bCopy full SHA for c82b88b
library/std/src/sys/pal/wasi/thread.rs
@@ -67,7 +67,7 @@ cfg_if::cfg_if! {
67
}
68
69
70
-pub const DEFAULT_MIN_STACK_SIZE: usize = 64 * 1024;
+pub const DEFAULT_MIN_STACK_SIZE: usize = 1024 * 1024;
71
72
impl Thread {
73
// unsafe: see thread::Builder::spawn_unchecked for safety requirements
library/std/src/sys/pal/wasm/atomics/thread.rs
@@ -6,7 +6,7 @@ use crate::time::Duration;
6
7
pub struct Thread(!);
8
9
10
11
12
0 commit comments