From 903f5212f194c2709b32631bd32936fdcfed27af Mon Sep 17 00:00:00 2001 From: Marcin Kolny Date: Wed, 11 Jan 2023 01:40:32 +0000 Subject: [PATCH] Increase stack size in the example app (#1880) --- samples/wasi-threads/wasm-apps/wasi_thread_start.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/wasi-threads/wasm-apps/wasi_thread_start.h b/samples/wasi-threads/wasm-apps/wasi_thread_start.h index 651f13c6..a46917d0 100644 --- a/samples/wasi-threads/wasm-apps/wasi_thread_start.h +++ b/samples/wasi-threads/wasm-apps/wasi_thread_start.h @@ -5,7 +5,7 @@ #ifndef WASI_THREAD_START_H #define WASI_THREAD_START_H -#define STACK_SIZE 1024 +#define STACK_SIZE 32 * 1024 // same as the main stack typedef struct { void *stack;