summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-03-05 09:13:29 +0100
committerbunnei <bunneidev@gmail.com>2021-03-06 02:10:57 +0100
commit47af34003b97a27ee8456cedb367b41f8687b517 (patch)
tree5e28f986f365d7f441997c3c7e5be8f61013e72b /src/core/hle/kernel/svc.cpp
parentMerge pull request #6039 from yuzu-emu/revert-6006-fiber-unique-ptr (diff)
downloadyuzu-47af34003b97a27ee8456cedb367b41f8687b517.tar
yuzu-47af34003b97a27ee8456cedb367b41f8687b517.tar.gz
yuzu-47af34003b97a27ee8456cedb367b41f8687b517.tar.bz2
yuzu-47af34003b97a27ee8456cedb367b41f8687b517.tar.lz
yuzu-47af34003b97a27ee8456cedb367b41f8687b517.tar.xz
yuzu-47af34003b97a27ee8456cedb367b41f8687b517.tar.zst
yuzu-47af34003b97a27ee8456cedb367b41f8687b517.zip
Diffstat (limited to 'src/core/hle/kernel/svc.cpp')
-rw-r--r--src/core/hle/kernel/svc.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index cc8fa6576..326d3b9ec 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1532,8 +1532,9 @@ static ResultCode CreateThread(Core::System& system, Handle* out_handle, VAddr e
std::shared_ptr<KThread> thread;
{
KScopedLightLock lk{process.GetStateLock()};
- CASCADE_RESULT(thread, KThread::Create(system, ThreadType::User, "", entry_point, priority,
- arg, core_id, stack_bottom, &process));
+ CASCADE_RESULT(thread,
+ KThread::CreateUserThread(system, ThreadType::User, "", entry_point,
+ priority, arg, core_id, stack_bottom, &process));
}
const auto new_thread_handle = process.GetHandleTable().Create(thread);