summaryrefslogtreecommitdiff
path: root/indra/llcommon/llcoros.cpp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-10-29 14:07:37 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-10-29 14:07:37 -0400
commitfd32cd647d8d7341f3e22589b389504ffe153cd4 (patch)
tree03bdbb363d9d2fe82269bd9ff85d2e0035b01c2f /indra/llcommon/llcoros.cpp
parent1f3c0a4cd0c324e9c46c3811404357e8a6790b26 (diff)
parent732fedbe8f585b86f7f44c058b7407f0f8a9ecf7 (diff)
DRTVWR-589: Merge branch 'main' of viewer-private into DRTVWR-589
Diffstat (limited to 'indra/llcommon/llcoros.cpp')
-rw-r--r--indra/llcommon/llcoros.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/indra/llcommon/llcoros.cpp b/indra/llcommon/llcoros.cpp
index 70d8dfc8b9..cfaf3415e7 100644
--- a/indra/llcommon/llcoros.cpp
+++ b/indra/llcommon/llcoros.cpp
@@ -123,11 +123,7 @@ LLCoros::LLCoros():
// Previously we used
// boost::context::guarded_stack_allocator::default_stacksize();
// empirically this is insufficient.
-#if ADDRESS_SIZE == 64
- mStackSize(512*1024),
-#else
- mStackSize(256*1024),
-#endif
+ mStackSize(768*1024),
// mCurrent does NOT own the current CoroData instance -- it simply
// points to it. So initialize it with a no-op deleter.
mCurrent{ [](CoroData*){} }