diff options
| author | RunitaiLinden <davep@lindenlab.com> | 2024-05-02 10:57:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-02 10:57:39 -0500 |
| commit | 7fc5f7e649c564fa8479a72a45459d0cc427d0f8 (patch) | |
| tree | 172449a55f78177fd1ea4c6ed1586b66141fdb33 /indra/llcommon/llcoros.cpp | |
| parent | 9b6979f458b585618fa59887b500a1a7a4a6e02f (diff) | |
#1354 Make coroutines use LLCoros::Mutex instead of LLMutex (#1356)
* #1354 Make coroutines use LLCoros::Mutex instead of LLMutex
* #1354 Fix some more unsafe coroutine executions.
* #1354 Implement changes requested by Nat
Diffstat (limited to 'indra/llcommon/llcoros.cpp')
| -rw-r--r-- | indra/llcommon/llcoros.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/indra/llcommon/llcoros.cpp b/indra/llcommon/llcoros.cpp index c13900f74a..219c65fbb8 100644 --- a/indra/llcommon/llcoros.cpp +++ b/indra/llcommon/llcoros.cpp @@ -61,6 +61,23 @@ #include <excpt.h> #endif +// static +bool LLCoros::on_main_coro() +{ + if (!LLCoros::instanceExists() || LLCoros::getName().empty()) + { + return true; + } + + return false; +} + +// static +bool LLCoros::on_main_thread_main_coro() +{ + return on_main_coro() && on_main_thread(); +} + // static LLCoros::CoroData& LLCoros::get_CoroData(const std::string& caller) { |
