diff options
author | bunnei <bunneidev@gmail.com> | 2021-03-06 02:08:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-06 02:08:17 +0100 |
commit | a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37 (patch) | |
tree | 503cbe4fb52939512f8ee0c976e46e9293de3c4c /src/core/hle/kernel/k_thread.cpp | |
parent | Merge pull request #6034 from Morph1984/mbedtls (diff) | |
download | yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.tar yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.tar.gz yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.tar.bz2 yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.tar.lz yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.tar.xz yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.tar.zst yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.zip |
Diffstat (limited to 'src/core/hle/kernel/k_thread.cpp')
-rw-r--r-- | src/core/hle/kernel/k_thread.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_thread.cpp b/src/core/hle/kernel/k_thread.cpp index f49e31b72..1661afbd9 100644 --- a/src/core/hle/kernel/k_thread.cpp +++ b/src/core/hle/kernel/k_thread.cpp @@ -991,6 +991,10 @@ 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, @@ -1024,7 +1028,7 @@ ResultVal<std::shared_ptr<KThread>> KThread::Create(Core::System& system, Thread scheduler.AddThread(thread); thread->host_context = - std::make_unique<Common::Fiber>(std::move(thread_start_func), thread_start_parameter); + std::make_shared<Common::Fiber>(std::move(thread_start_func), thread_start_parameter); return MakeResult<std::shared_ptr<KThread>>(std::move(thread)); } |