kernel: Fix svcWaitSynch to always acquire requested wait objects.

This commit is contained in:
bunnei 2015-06-07 23:39:37 -04:00
parent f1ff0fbf07
commit 71e8822d23
9 changed files with 68 additions and 113 deletions

View file

@ -41,10 +41,7 @@ void Event::Acquire() {
void Event::Signal() {
signaled = true;
WakeupAllWaitingThreads();
HLE::Reschedule(__func__);
}
void Event::Clear() {