From 3a6043166442f0df187780e37f102e00398c1815 Mon Sep 17 00:00:00 2001 From: aivve Date: Mon, 2 Apr 2018 00:53:49 +0300 Subject: [PATCH] Regrow stack size for Linux --- src/Platform/Linux/System/Dispatcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Platform/Linux/System/Dispatcher.cpp b/src/Platform/Linux/System/Dispatcher.cpp index 3baa58831f..fecc93154f 100644 --- a/src/Platform/Linux/System/Dispatcher.cpp +++ b/src/Platform/Linux/System/Dispatcher.cpp @@ -58,7 +58,7 @@ class MutextGuard { static_assert(Dispatcher::SIZEOF_PTHREAD_MUTEX_T == sizeof(pthread_mutex_t), "invalid pthread mutex size"); -const size_t STACK_SIZE = 64 * 1024; +const size_t STACK_SIZE = 512 * 1024; };