diff options
author | Michael Scire <SciresM@gmail.com> | 2018-06-21 01:40:29 -0600 |
---|---|---|
committer | Michael Scire <SciresM@gmail.com> | 2018-06-21 01:40:29 -0600 |
commit | 9d71ce88cee58d2e171ec5ed82daf075112fb422 (patch) | |
tree | 3e8dfaf638c2e63124295d2c8ed1b20c6060c847 /src/yuzu | |
parent | 7e191dccc184ae85ce5ade2bca913ab331002481 (diff) |
Kernel/Arbiters: Implement WaitForAddress
Diffstat (limited to 'src/yuzu')
-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 017bef13c..800e431bd 100644 --- a/src/yuzu/debugger/wait_tree.cpp +++ b/src/yuzu/debugger/wait_tree.cpp @@ -213,6 +213,9 @@ QString WaitTreeThread::GetText() const { case THREADSTATUS_WAIT_MUTEX: status = tr("waiting for mutex"); break; + case THREADSTATUS_WAIT_MUTEX: + status = tr("waiting for address arbiter"); + break; case THREADSTATUS_DORMANT: status = tr("dormant"); break; @@ -240,6 +243,7 @@ QColor WaitTreeThread::GetColor() const { case THREADSTATUS_WAIT_SYNCH_ALL: case THREADSTATUS_WAIT_SYNCH_ANY: case THREADSTATUS_WAIT_MUTEX: + case THREADSTATUS_WAIT_ARB: return QColor(Qt::GlobalColor::red); case THREADSTATUS_DORMANT: return QColor(Qt::GlobalColor::darkCyan); |