aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/k_thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-11-10 22:28:30 -0800
committerbunnei <bunneidev@gmail.com>2021-12-06 16:39:17 -0800
commitb0671c7cfaa8bdb9704827af83be9223a5890f97 (patch)
tree1cc9ae63853c390166832afe9218257eb0a4ee99 /src/core/hle/kernel/k_thread.h
parentbeb55cb90ee5a830240cd34ebf2ac236eeeb8653 (diff)
hle: kernel: KThread: Migrate to updated KThreadQueue (part 1).
Diffstat (limited to 'src/core/hle/kernel/k_thread.h')
-rw-r--r--src/core/hle/kernel/k_thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h
index f9a324eb3..6d68c2399 100644
--- a/src/core/hle/kernel/k_thread.h
+++ b/src/core/hle/kernel/k_thread.h
@@ -161,8 +161,6 @@ public:
}
}
- void Wakeup();
-
void SetBasePriority(s32 value);
[[nodiscard]] ResultCode Run();
@@ -380,6 +378,8 @@ public:
[[nodiscard]] bool IsSignaled() const override;
+ void OnTimer();
+
static void PostDestroy(uintptr_t arg);
[[nodiscard]] static ResultCode InitializeDummyThread(KThread* thread);