From 789405ec94f3a387b1625f9143a37c444884a528 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 651f13c6c4..a46917d0a0 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;