hle: kernel: Remove unnecessary virtual specifier on CancelWait.
This commit is contained in:
		| @@ -91,7 +91,7 @@ public: | ||||
|     explicit ThreadQueueImplForKAddressArbiter(KernelCore& kernel_, KAddressArbiter::ThreadTree* t) | ||||
|         : KThreadQueue(kernel_), m_tree(t) {} | ||||
|  | ||||
|     virtual void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|     void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|                     bool cancel_timer_task) override { | ||||
|         // If the thread is waiting on an address arbiter, remove it from the tree. | ||||
|         if (waiting_thread->IsWaitingForAddressArbiter()) { | ||||
|   | ||||
| @@ -63,7 +63,7 @@ public: | ||||
|     explicit ThreadQueueImplForKConditionVariableWaitForAddress(KernelCore& kernel_) | ||||
|         : KThreadQueue(kernel_) {} | ||||
|  | ||||
|     virtual void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|     void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|                     bool cancel_timer_task) override { | ||||
|         // Remove the thread as a waiter from its owner. | ||||
|         waiting_thread->GetLockOwner()->RemoveWaiter(waiting_thread); | ||||
| @@ -82,7 +82,7 @@ public: | ||||
|         KernelCore& kernel_, KConditionVariable::ThreadTree* t) | ||||
|         : KThreadQueue(kernel_), m_tree(t) {} | ||||
|  | ||||
|     virtual void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|     void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|                     bool cancel_timer_task) override { | ||||
|         // Remove the thread as a waiter from its owner. | ||||
|         if (KThread* owner = waiting_thread->GetLockOwner(); owner != nullptr) { | ||||
|   | ||||
| @@ -18,7 +18,7 @@ public: | ||||
|                                               bool term) | ||||
|         : KThreadQueue(kernel_), m_wait_list(wl), m_allow_terminating_thread(term) {} | ||||
|  | ||||
|     virtual void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|     void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|                     bool cancel_timer_task) override { | ||||
|         // Only process waits if we're allowed to. | ||||
|         if (ResultTerminationRequested == wait_result && m_allow_terminating_thread) { | ||||
|   | ||||
| @@ -16,7 +16,7 @@ class ThreadQueueImplForKLightLock final : public KThreadQueue { | ||||
| public: | ||||
|     explicit ThreadQueueImplForKLightLock(KernelCore& kernel_) : KThreadQueue(kernel_) {} | ||||
|  | ||||
|     virtual void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|     void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|                     bool cancel_timer_task) override { | ||||
|         // Remove the thread as a waiter from its owner. | ||||
|         if (KThread* owner = waiting_thread->GetLockOwner(); owner != nullptr) { | ||||
|   | ||||
| @@ -46,7 +46,7 @@ public: | ||||
|         KThreadQueue::EndWait(waiting_thread, wait_result); | ||||
|     } | ||||
|  | ||||
|     virtual void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|     void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|                     bool cancel_timer_task) override { | ||||
|         // Remove all nodes from our list. | ||||
|         for (auto i = 0; i < m_count; ++i) { | ||||
|   | ||||
| @@ -72,7 +72,7 @@ public: | ||||
|     explicit ThreadQueueImplForKThreadSetProperty(KernelCore& kernel_, KThread::WaiterList* wl) | ||||
|         : KThreadQueue(kernel_), m_wait_list(wl) {} | ||||
|  | ||||
|     virtual void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|     void CancelWait(KThread* waiting_thread, ResultCode wait_result, | ||||
|                     bool cancel_timer_task) override { | ||||
|         // Remove the thread from the wait list. | ||||
|         m_wait_list->erase(m_wait_list->iterator_to(*waiting_thread)); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user