diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-10-31 12:05:07 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-10-31 12:05:07 -0400 |
commit | 5f1008ab6b5dd59a80123be7580b7a1f1da4c259 (patch) | |
tree | 26a03079a956677c3852ba2f5ac040d35ffb788d /indra | |
parent | 6fb9a4640bad7bc88a52014ce23f7f8ad4a39c23 (diff) |
DRTVWR-588: Enlarge default coroutine stack size.
On a Windows CI host, we got the dreaded rc 3221225725 aka c00000fd aka stack
overflow.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llcoros.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llcoros.cpp b/indra/llcommon/llcoros.cpp index cfaf3415e7..191c1a9037 100644 --- a/indra/llcommon/llcoros.cpp +++ b/indra/llcommon/llcoros.cpp @@ -123,7 +123,7 @@ LLCoros::LLCoros(): // Previously we used // boost::context::guarded_stack_allocator::default_stacksize(); // empirically this is insufficient. - mStackSize(768*1024), + mStackSize(900*1024), // mCurrent does NOT own the current CoroData instance -- it simply // points to it. So initialize it with a no-op deleter. mCurrent{ [](CoroData*){} } |