diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-03-13 19:55:04 -0400 |
---|---|---|
committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-03-19 20:32:47 -0400 |
commit | acbdfdae644ad56ca94318758f57e406350586ce (patch) | |
tree | 472bd8e0001d74d59cce42ec47a5f01fe6910990 /src/yuzu/debugger/wait_tree.cpp | |
parent | 774f139e65eda2e0e0a76f859ae03b533786bbf9 (diff) |
Add CondVar Thread State.
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: |