mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-19 00:18:10 -05:00
SVC: Correct WaitSynchronization, WaitProcessWideKey, SignalProcessWideKey.
This commit is contained in:
@ -102,6 +102,10 @@ void SynchronizationObject::WakeupAllWaitingThreads() {
|
||||
}
|
||||
}
|
||||
|
||||
void SynchronizationObject::ClearWaitingThreads() {
|
||||
waiting_threads.clear();
|
||||
}
|
||||
|
||||
const std::vector<std::shared_ptr<Thread>>& SynchronizationObject::GetWaitingThreads() const {
|
||||
return waiting_threads;
|
||||
}
|
||||
|
Reference in New Issue
Block a user