Kernel/Arbiters: Implement WaitForAddress
This commit is contained in:
parent
6e9b11ffa0
commit
3119b64d86
5 changed files with 71 additions and 6 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue