diff options
| author | bunnei <bunneidev@gmail.com> | 2019-01-31 15:19:02 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-31 15:19:02 -0500 |
| commit | db21ac262774029a7b844e626a6474202263f9aa (patch) | |
| tree | ed14b003d8ec872cd3d815fd5b372c4e64eb9a01 /src/core/hle/kernel/wait_object.h | |
| parent | d6f5f5cafa4e7a2769f3515260d4e2b373ede3b9 (diff) | |
| parent | a3cdd773c34ccfbfaa4a59724d94b6d8ca7c64e7 (diff) | |
Merge pull request #2077 from lioncash/virt
kernel/wait_object: Devirtualize functions related to manipulating the thread list directly
Diffstat (limited to 'src/core/hle/kernel/wait_object.h')
| -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: * Add a thread to wait on this object * @param thread Pointer to thread to add */ - virtual void AddWaitingThread(SharedPtr<Thread> thread); + void AddWaitingThread(SharedPtr<Thread> thread); /** * Removes a thread from waiting on this object (e.g. if it was resumed already) * @param thread Pointer to thread to remove */ - virtual void RemoveWaitingThread(Thread* thread); + void RemoveWaitingThread(Thread* thread); /** * Wake up all threads waiting on this object that can be awoken, in priority order, * and set the synchronization result and output of the thread. */ - virtual void WakeupAllWaitingThreads(); + void WakeupAllWaitingThreads(); /** * Wakes up a single thread waiting on this object. |
