summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorBrad Linden <brad@lindenlab.com>2024-05-14 11:07:13 -0700
committerBrad Linden <brad@lindenlab.com>2024-05-14 11:07:13 -0700
commit31a3423239a1312e430909ad899d60003363541f (patch)
tree93a7cd46544e69543794654b29068a74437af7d1 /indra/llcommon
parent193d9d5f767c2bfad1dc5ced4fa630d05ae798ae (diff)
parent1e9e5a7b7629276d509c352699fb5891c2dc6587 (diff)
Merge remote-tracking branch 'origin/release/materials_featurette' into project/gltf_development
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 219c65fbb8..23b30bcc57 100644
--- a/indra/llcommon/llcoros.cpp
+++ b/indra/llcommon/llcoros.cpp
@@ -140,7 +140,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*){} }