summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2025-03-29 22:40:59 +0200
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-03-30 13:38:34 +0300
commite671cb54fee9cb7b7da39953eb96eabc9151f687 (patch)
tree8b5aaf07b4da0e85d4d2ba4e5ebef7e4bb4cb590 /indra/llcommon
parent193cab14c2cf629e5bf012fc830cb1132389d101 (diff)
#3795 Crash at getVolatileAPRPool()
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/workqueue.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/workqueue.cpp b/indra/llcommon/workqueue.cpp
index dace95aaf2..c8ece616b2 100644
--- a/indra/llcommon/workqueue.cpp
+++ b/indra/llcommon/workqueue.cpp
@@ -183,12 +183,12 @@ void LL::WorkQueueBase::callWork(const Work& work)
catch (...)
{
// Stash any other kind of uncaught exception to be rethrown by main thread.
- LL_WARNS("LLCoros") << "Capturing uncaught exception in WorkQueueBase "
+ LL_WARNS("LLCoros") << "Capturing and rethrowing uncaught exception in WorkQueueBase "
<< getKey() << LL_ENDL;
LL::WorkQueue::ptr_t main_queue = LL::WorkQueue::getInstance("mainloop");
main_queue->post(
- // Bind the current exception rethrow it in main loop.
+ // Bind the current exception, rethrow it in main loop.
[exc = std::current_exception()]() { std::rethrow_exception(exc); });
}
#endif // else LL_WINDOWS