From d6fb694a21bf962279363ce85f232f607a5645d5 Mon Sep 17 00:00:00 2001 From: Altti Jokinen Date: Mon, 18 Mar 2024 22:14:36 -0600 Subject: [PATCH] Test increasing even more --- src/core/lib/iomgr/executor/threadpool.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/lib/iomgr/executor/threadpool.cc b/src/core/lib/iomgr/executor/threadpool.cc index 6b5219510bda2..a8ea47a77c289 100644 --- a/src/core/lib/iomgr/executor/threadpool.cc +++ b/src/core/lib/iomgr/executor/threadpool.cc @@ -64,9 +64,9 @@ void ThreadPool::SharedThreadPoolConstructor() { size_t ThreadPool::DefaultStackSize() { #if defined(__ANDROID__) || defined(__APPLE__) - return 2552 * 1024; + return 3904 * 1024; #else - return 64 * 1024; + return 3904 * 1024; #endif }