diff options
author | bunnei <bunneidev@gmail.com> | 2019-03-28 21:42:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-28 21:42:24 -0400 |
commit | f770c17d011e76cb268df5ba5d687609a0f514d4 (patch) | |
tree | 95638bae93a71b58d4c58ff5adb03d1256b3cb8a /src/yuzu/debugger/wait_tree.cpp | |
parent | b404fcdf1443b91ac9994c05ad1fe039fcd9675e (diff) | |
parent | 9c7319a4d423a20c45cd8d7898c2f73659526d33 (diff) |
Merge pull request #2266 from FernandoS27/arbitration
Kernel: Fixes to Arbitration and SignalProcessWideKey Management
Diffstat (limited to 'src/yuzu/debugger/wait_tree.cpp')
-rw-r--r-- | src/yuzu/debugger/wait_tree.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp index 06ad74ffe..593bb681f 100644 --- a/src/yuzu/debugger/wait_tree.cpp +++ b/src/yuzu/debugger/wait_tree.cpp @@ -234,6 +234,9 @@ QString WaitTreeThread::GetText() const { case Kernel::ThreadStatus::WaitMutex: status = tr("waiting for mutex"); break; + case Kernel::ThreadStatus::WaitCondVar: + status = tr("waiting for condition variable"); + break; case Kernel::ThreadStatus::WaitArb: status = tr("waiting for address arbiter"); break; @@ -269,6 +272,7 @@ QColor WaitTreeThread::GetColor() const { case Kernel::ThreadStatus::WaitSynchAll: case Kernel::ThreadStatus::WaitSynchAny: case Kernel::ThreadStatus::WaitMutex: + case Kernel::ThreadStatus::WaitCondVar: case Kernel::ThreadStatus::WaitArb: return QColor(Qt::GlobalColor::red); case Kernel::ThreadStatus::Dormant: |