Skip to content

Commit 8c4ff27

Browse files
committed
Increase trampoline stack size
This fixes OpenMathLib/OpenBLAS#1936 somehow
1 parent 19ffd0b commit 8c4ff27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

implementation.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ static void setup_trampoline(void)
315315
pthread_t child;
316316
pthread_attr_t attr;
317317
void* trampolinestack;
318-
size_t trampolinestacksize = 1 << 16;
318+
size_t trampolinestacksize = 1 << 17;
319319

320320
#ifdef PTHREAD_STACK_MIN
321321
if (trampolinestacksize < PTHREAD_STACK_MIN)

0 commit comments

Comments
 (0)