summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorBrad Linden <brad@lindenlab.com>2024-05-14 09:42:24 -0700
committerBrad Linden <brad@lindenlab.com>2024-05-14 09:42:24 -0700
commit1e9e5a7b7629276d509c352699fb5891c2dc6587 (patch)
tree1cc5c50e21469a615b5012958b4d1ef84f34e46b /indra/llcommon
parent6a43bbd7b29bbba1d3c9ba18f087228078ca938f (diff)
parentd4043d3b011c32eb503c43c551872f9c24d7344f (diff)
Merge remote-tracking branch 'origin/main' into release/materials_featurette
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*){} }