summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-11-27 00:10:21 +0100
committerbunnei <bunneidev@gmail.com>2021-12-07 01:39:18 +0100
commit0d9afdedc4ef9c0861739b04fc9a53926305e1f3 (patch)
tree58438353898e08ea00ce5cfb3e5a4abcf0f2fb6c /src/core/hle/kernel/k_thread.cpp
parenthle: kernel: fix timing on thread preemption (diff)
downloadyuzu-0d9afdedc4ef9c0861739b04fc9a53926305e1f3.tar
yuzu-0d9afdedc4ef9c0861739b04fc9a53926305e1f3.tar.gz
yuzu-0d9afdedc4ef9c0861739b04fc9a53926305e1f3.tar.bz2
yuzu-0d9afdedc4ef9c0861739b04fc9a53926305e1f3.tar.lz
yuzu-0d9afdedc4ef9c0861739b04fc9a53926305e1f3.tar.xz
yuzu-0d9afdedc4ef9c0861739b04fc9a53926305e1f3.tar.zst
yuzu-0d9afdedc4ef9c0861739b04fc9a53926305e1f3.zip
Diffstat (limited to 'src/core/hle/kernel/k_thread.cpp')
-rw-r--r--src/core/hle/kernel/k_thread.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_thread.cpp b/src/core/hle/kernel/k_thread.cpp
index f69978caf..334487d8a 100644
--- a/src/core/hle/kernel/k_thread.cpp
+++ b/src/core/hle/kernel/k_thread.cpp
@@ -113,6 +113,8 @@ ResultCode KThread::Initialize(KThreadFunction func, uintptr_t arg, VAddr user_s
[[fallthrough]];
case ThreadType::HighPriority:
[[fallthrough]];
+ case ThreadType::Dummy:
+ [[fallthrough]];
case ThreadType::User:
ASSERT(((owner == nullptr) ||
(owner->GetCoreMask() | (1ULL << virt_core)) == owner->GetCoreMask()));
@@ -248,7 +250,7 @@ ResultCode KThread::InitializeThread(KThread* thread, KThreadFunction func, uint
}
ResultCode KThread::InitializeDummyThread(KThread* thread) {
- return thread->Initialize({}, {}, {}, DefaultThreadPriority, 3, {}, ThreadType::Main);
+ return thread->Initialize({}, {}, {}, DefaultThreadPriority, 3, {}, ThreadType::Dummy);
}
ResultCode KThread::InitializeIdleThread(Core::System& system, KThread* thread, s32 virt_core) {