Increase stack size in the example app (#1880)

This commit is contained in:
Marcin Kolny
2023-01-11 01:40:32 +00:00
committed by GitHub
parent 0e2382a959
commit 903f5212f1

View File

@ -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;