aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2015-01-14 23:19:22 -0500
committerGravatar bunnei <bunneidev@gmail.com>2015-01-21 18:41:58 -0500
commit5e77e2e1de73ce7786f52f2a74c28182fa4aa845 (patch)
treed874f351cd8bc11757d50deba4fea1abefd323d2 /src/core/hle/kernel/kernel.h
parentc22bac6398ff1705992fc44b2c29775c84cff662 (diff)
WaitObject: Added RemoveWaitingThread, fixed a bug, and cleanup.
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index a9af9de8..53b3f914 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();