diff options
| -rw-r--r-- | src/core/hle/kernel/wait_object.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/wait_object.h b/src/core/hle/kernel/wait_object.h index d70b67893..5987fb971 100644 --- a/src/core/hle/kernel/wait_object.h +++ b/src/core/hle/kernel/wait_object.h | |||
| @@ -33,19 +33,19 @@ public: | |||
| 33 | * Add a thread to wait on this object | 33 | * Add a thread to wait on this object |
| 34 | * @param thread Pointer to thread to add | 34 | * @param thread Pointer to thread to add |
| 35 | */ | 35 | */ |
| 36 | virtual void AddWaitingThread(SharedPtr<Thread> thread); | 36 | void AddWaitingThread(SharedPtr<Thread> thread); |
| 37 | 37 | ||
| 38 | /** | 38 | /** |
| 39 | * Removes a thread from waiting on this object (e.g. if it was resumed already) | 39 | * Removes a thread from waiting on this object (e.g. if it was resumed already) |
| 40 | * @param thread Pointer to thread to remove | 40 | * @param thread Pointer to thread to remove |
| 41 | */ | 41 | */ |
| 42 | virtual void RemoveWaitingThread(Thread* thread); | 42 | void RemoveWaitingThread(Thread* thread); |
| 43 | 43 | ||
| 44 | /** | 44 | /** |
| 45 | * Wake up all threads waiting on this object that can be awoken, in priority order, | 45 | * Wake up all threads waiting on this object that can be awoken, in priority order, |
| 46 | * and set the synchronization result and output of the thread. | 46 | * and set the synchronization result and output of the thread. |
| 47 | */ | 47 | */ |
| 48 | virtual void WakeupAllWaitingThreads(); | 48 | void WakeupAllWaitingThreads(); |
| 49 | 49 | ||
| 50 | /** | 50 | /** |
| 51 | * Wakes up a single thread waiting on this object. | 51 | * Wakes up a single thread waiting on this object. |