From: Yuta Saito Date: Fri, 2 May 2025 16:47:29 +0000 (+0000) Subject: wasm: increase the default Asyncify buffer size X-Git-Url: https://repo.or.cz/ruby.git/commitdiff_plain/186022d13fc7542525049b6dee6cc6e6fbd0cf94 wasm: increase the default Asyncify buffer size We will need more Asyncify space for the upcoming namespace changes as it will introduce more local variables and conditional jumps in asyncify'd functions. --- diff --git a/wasm/setjmp.h b/wasm/setjmp.h index e65bfc0ca0..82cfff1d00 100644 --- a/wasm/setjmp.h +++ b/wasm/setjmp.h @@ -5,7 +5,7 @@ #include #ifndef WASM_SETJMP_STACK_BUFFER_SIZE -# define WASM_SETJMP_STACK_BUFFER_SIZE 6144 +# define WASM_SETJMP_STACK_BUFFER_SIZE 8192 #endif struct __rb_wasm_asyncify_jmp_buf {