summaryrefslogtreecommitdiff
path: root/wasm/setjmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'wasm/setjmp.h')
-rw-r--r--wasm/setjmp.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/wasm/setjmp.h b/wasm/setjmp.h
index cc14df33be..82cfff1d00 100644
--- a/wasm/setjmp.h
+++ b/wasm/setjmp.h
@@ -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 {
@@ -65,6 +65,7 @@ struct rb_wasm_try_catch {
rb_wasm_try_catch_func_t try_f;
rb_wasm_try_catch_func_t catch_f;
void *context;
+ void *stack_pointer;
int state;
};