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.
This commit is contained in:
Yuta Saito 2025-05-02 16:47:29 +00:00
parent 33909a1c69
commit 186022d13f
Notes: git 2025-05-02 17:36:30 +00:00

View File

@ -5,7 +5,7 @@
#include <stdbool.h>
#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 {