summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-03-05 08:59:06 +0100
committerGitHub <noreply@github.com>2021-03-05 08:59:06 +0100
commit34a3ee16319ddcfe855249c2fe48b6e7b6441526 (patch)
tree24ff38e19a77b60201ee028b6abb476d82fc16d0 /src/core/hle/kernel/k_thread.cpp
parentMerge pull request #5989 from ReinUsesLisp/cmdpool (diff)
parentcore: Switch to unique_ptr for usage of Common::Fiber. (diff)
downloadyuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.gz
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.bz2
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.lz
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.xz
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.zst
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.zip
Diffstat (limited to 'src/core/hle/kernel/k_thread.cpp')
-rw-r--r--src/core/hle/kernel/k_thread.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/hle/kernel/k_thread.cpp b/src/core/hle/kernel/k_thread.cpp
index 1661afbd9..f49e31b72 100644
--- a/src/core/hle/kernel/k_thread.cpp
+++ b/src/core/hle/kernel/k_thread.cpp
@@ -991,10 +991,6 @@ void KThread::SetState(ThreadState state) {
}
}
-std::shared_ptr<Common::Fiber>& KThread::GetHostContext() {
- return host_context;
-}
-
ResultVal<std::shared_ptr<KThread>> KThread::Create(Core::System& system, ThreadType type_flags,
std::string name, VAddr entry_point,
u32 priority, u64 arg, s32 processor_id,
@@ -1028,7 +1024,7 @@ ResultVal<std::shared_ptr<KThread>> KThread::Create(Core::System& system, Thread
scheduler.AddThread(thread);
thread->host_context =
- std::make_shared<Common::Fiber>(std::move(thread_start_func), thread_start_parameter);
+ std::make_unique<Common::Fiber>(std::move(thread_start_func), thread_start_parameter);
return MakeResult<std::shared_ptr<KThread>>(std::move(thread));
}