summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-05-08 15:26:00 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-05-09 15:36:48 -0400
commit9deeec22b7348f56b1d32ab6aff73c59e002ff21 (patch)
tree31fa0432698af16256491b82e2720a62568ca387 /indra/llcommon
parent692a5eb2d3c657908dac8c45c31cfd527046da74 (diff)
Bump up coroutine stack size: saw C00000FD test termination.
(cherry picked from commit dc0b3aed4782e4e4835fd6b9d59d1d70b78be4a7)
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llcoros.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llcoros.cpp b/indra/llcommon/llcoros.cpp
index c13900f74a..8612f9353f 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(900*1024),
+ mStackSize(1024*1024),
// mCurrent does NOT own the current CoroData instance -- it simply
// points to it. So initialize it with a no-op deleter.
mCurrent{ [](CoroData*){} }