change coroutine stack size to 4MB.

Signed-off-by: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com>
This commit is contained in:
Pratik Mankawde
2026-02-06 11:57:52 +00:00
parent 1a14b813b8
commit 14e3e098d5

View File

@@ -27,7 +27,7 @@ JobQueue::Coro::Coro(Coro_create_t, JobQueue& jq, JobType type, std::string cons
finished_ = true;
#endif
},
boost::coroutines::attributes(megabytes(2))) // 2MB stack (increased from 1MB)
boost::coroutines::attributes(megabytes(4))) // 4MB stack (increased from 1MB)
{
}