diff options
author | bunnei <bunneidev@gmail.com> | 2021-11-21 11:29:53 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-12-07 01:39:17 +0100 |
commit | 8f4ff06c4cf807ff68619eb69cc69dc20659d6d6 (patch) | |
tree | 37729ddb9aaac49204cf773b2c685b676ab4de46 /src/core/hle/kernel/k_thread.cpp | |
parent | hle: kernel: KProcess: Improvements for thread pinning. (diff) | |
download | yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar.gz yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar.bz2 yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar.lz yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar.xz yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.tar.zst yuzu-8f4ff06c4cf807ff68619eb69cc69dc20659d6d6.zip |
Diffstat (limited to 'src/core/hle/kernel/k_thread.cpp')
-rw-r--r-- | src/core/hle/kernel/k_thread.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/core/hle/kernel/k_thread.cpp b/src/core/hle/kernel/k_thread.cpp index 7ef52a240..813b92ea4 100644 --- a/src/core/hle/kernel/k_thread.cpp +++ b/src/core/hle/kernel/k_thread.cpp @@ -68,13 +68,9 @@ public: }; class ThreadQueueImplForKThreadSetProperty final : public KThreadQueue { -private: - KThread::WaiterList* m_wait_list; - public: explicit ThreadQueueImplForKThreadSetProperty(KernelCore& kernel_, KThread::WaiterList* wl) - : KThreadQueue(kernel_), m_wait_list(wl) { // ... - } + : KThreadQueue(kernel_), m_wait_list(wl) {} virtual void CancelWait(KThread* waiting_thread, ResultCode wait_result, bool cancel_timer_task) override { @@ -84,6 +80,9 @@ public: // Invoke the base cancel wait handler. KThreadQueue::CancelWait(waiting_thread, wait_result, cancel_timer_task); } + +private: + KThread::WaiterList* m_wait_list; }; } // namespace |