Kernel/Threads: Add a new thread status that will allow using a Kernel::Event to put a guest thread to sleep inside an HLE handler until said event is signaled.
This commit is contained in:
parent
db752b52e8
commit
0a308e224c
4 changed files with 10 additions and 2 deletions
|
@ -276,6 +276,7 @@ void Thread::ResumeFromWait() {
|
|||
switch (status) {
|
||||
case THREADSTATUS_WAIT_SYNCH_ALL:
|
||||
case THREADSTATUS_WAIT_SYNCH_ANY:
|
||||
case THREADSTATUS_WAIT_HLE_EVENT:
|
||||
case THREADSTATUS_WAIT_ARB:
|
||||
case THREADSTATUS_WAIT_SLEEP:
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue