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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;