summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-03-06 02:08:17 +0100
committerGitHub <noreply@github.com>2021-03-06 02:08:17 +0100
commita5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37 (patch)
tree503cbe4fb52939512f8ee0c976e46e9293de3c4c /src/core/hle/kernel/k_thread.h
parentMerge pull request #6034 from Morph1984/mbedtls (diff)
downloadyuzu-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 '')
-rw-r--r--src/core/hle/kernel/k_thread.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h
index a2893d939..c8ac656a4 100644
--- a/src/core/hle/kernel/k_thread.h
+++ b/src/core/hle/kernel/k_thread.h
@@ -293,13 +293,7 @@ public:
return thread_context_64;
}
- [[nodiscard]] Common::Fiber* GetHostContext() {
- return host_context.get();
- }
-
- [[nodiscard]] const Common::Fiber* GetHostContext() const {
- return host_context.get();
- }
+ [[nodiscard]] std::shared_ptr<Common::Fiber>& GetHostContext();
[[nodiscard]] ThreadState GetState() const {
return thread_state & ThreadState::Mask;
@@ -725,7 +719,7 @@ private:
Common::SpinLock context_guard{};
// For emulation
- std::unique_ptr<Common::Fiber> host_context{};
+ std::shared_ptr<Common::Fiber> host_context{};
// For debugging
std::vector<KSynchronizationObject*> wait_objects_for_debugging;