From 0f6fbdb9632d4d67695b4f151884434b91441782 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 7 Jan 2018 16:33:41 -0500 Subject: wait_object: Refactor to allow waking up a single thread. --- src/core/hle/kernel/wait_object.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/core/hle/kernel/wait_object.h') diff --git a/src/core/hle/kernel/wait_object.h b/src/core/hle/kernel/wait_object.h index 861578186..78bfd8c6c 100644 --- a/src/core/hle/kernel/wait_object.h +++ b/src/core/hle/kernel/wait_object.h @@ -44,6 +44,12 @@ public: */ virtual void WakeupAllWaitingThreads(); + /** + * Wakes up a single thread waiting on this object. + * @param thread Thread that is waiting on this object to wakeup. + */ + void WakeupWaitingThread(SharedPtr thread); + /// Obtains the highest priority thread that is ready to run from this object's waiting list. SharedPtr GetHighestPriorityReadyThread(); -- cgit v1.2.3