summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-01-18 03:48:14 +0100
committerbunnei <bunneidev@gmail.com>2022-01-21 02:08:00 +0100
commit46a620f9d7c0fa2a4f1143ebf28bba4fee12d1a1 (patch)
tree5d1a3174fc8285e9388277e7e7d877de0425aa82 /src/core/hle/kernel/k_thread.h
parenthle: kernel: service_thread: Ensure dummy thread is closed & destroyed on thread exit. (diff)
downloadyuzu-46a620f9d7c0fa2a4f1143ebf28bba4fee12d1a1.tar
yuzu-46a620f9d7c0fa2a4f1143ebf28bba4fee12d1a1.tar.gz
yuzu-46a620f9d7c0fa2a4f1143ebf28bba4fee12d1a1.tar.bz2
yuzu-46a620f9d7c0fa2a4f1143ebf28bba4fee12d1a1.tar.lz
yuzu-46a620f9d7c0fa2a4f1143ebf28bba4fee12d1a1.tar.xz
yuzu-46a620f9d7c0fa2a4f1143ebf28bba4fee12d1a1.tar.zst
yuzu-46a620f9d7c0fa2a4f1143ebf28bba4fee12d1a1.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/k_thread.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h
index 86d4b7c55..77b53a198 100644
--- a/src/core/hle/kernel/k_thread.h
+++ b/src/core/hle/kernel/k_thread.h
@@ -112,6 +112,7 @@ private:
public:
static constexpr s32 DefaultThreadPriority = 44;
static constexpr s32 IdleThreadPriority = Svc::LowestThreadPriority + 1;
+ static constexpr s32 DummyThreadPriority = Svc::LowestThreadPriority + 2;
explicit KThread(KernelCore& kernel_);
~KThread() override;