mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-20 21:27:52 -05:00
Kernel: Renamed some functions for clarity.
- ReleaseNextThread->WakeupNextThread - ReleaseAllWaitingThreads->WakeupAllWaitingThreads.
This commit is contained in:
@ -47,7 +47,7 @@ ResultCode SignalEvent(const Handle handle) {
|
||||
return InvalidHandle(ErrorModule::Kernel);
|
||||
|
||||
evt->signaled = true;
|
||||
evt->ReleaseAllWaitingThreads();
|
||||
evt->WakeupAllWaitingThreads();
|
||||
|
||||
return RESULT_SUCCESS;
|
||||
}
|
||||
|
Reference in New Issue
Block a user