diff options
author | bunnei <bunneidev@gmail.com> | 2015-01-15 05:19:22 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-01-22 00:41:58 +0100 |
commit | 5e77e2e1de73ce7786f52f2a74c28182fa4aa845 (patch) | |
tree | d874f351cd8bc11757d50deba4fea1abefd323d2 /src/core/hle/kernel/kernel.h | |
parent | Kernel: Added WaitObject and changed "waitable" objects inherit from it. (diff) | |
download | yuzu-5e77e2e1de73ce7786f52f2a74c28182fa4aa845.tar yuzu-5e77e2e1de73ce7786f52f2a74c28182fa4aa845.tar.gz yuzu-5e77e2e1de73ce7786f52f2a74c28182fa4aa845.tar.bz2 yuzu-5e77e2e1de73ce7786f52f2a74c28182fa4aa845.tar.lz yuzu-5e77e2e1de73ce7786f52f2a74c28182fa4aa845.tar.xz yuzu-5e77e2e1de73ce7786f52f2a74c28182fa4aa845.tar.zst yuzu-5e77e2e1de73ce7786f52f2a74c28182fa4aa845.zip |
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r-- | src/core/hle/kernel/kernel.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index a9af9de88..53b3f9143 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h @@ -105,7 +105,13 @@ public: void AddWaitingThread(Thread* thread); /** - * Resumes the next thread waiting on this object + * Removes a thread from waiting on this object (e.g. if it was resumed already) + * @param thread Pointer to thread to remove + */ + void RemoveWaitingThread(Thread* thead); + + /** + * Resumes (and removes) the next thread waiting on this object * @return Pointer to the thread that was resumed, nullptr if no threads are waiting */ Thread* ResumeNextThread(); |