diff options
| author | bunnei <bunneidev@gmail.com> | 2021-03-04 23:59:06 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-04 23:59:06 -0800 |
| commit | 34a3ee16319ddcfe855249c2fe48b6e7b6441526 (patch) | |
| tree | 24ff38e19a77b60201ee028b6abb476d82fc16d0 /src/core/hle/kernel/k_thread.h | |
| parent | b8b589158594cf8dd1bb499b6516573dc6d4cfdd (diff) | |
| parent | 51fb0a6f9647ba199da10fe4f018ee36e44e65ba (diff) | |
Merge pull request #6006 from bunnei/fiber-unique-ptr
core: Switch to unique_ptr for usage of Common::Fiber.
Diffstat (limited to 'src/core/hle/kernel/k_thread.h')
| -rw-r--r-- | src/core/hle/kernel/k_thread.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_thread.h b/src/core/hle/kernel/k_thread.h index c8ac656a4..a2893d939 100644 --- a/src/core/hle/kernel/k_thread.h +++ b/src/core/hle/kernel/k_thread.h @@ -293,7 +293,13 @@ public: return thread_context_64; } - [[nodiscard]] std::shared_ptr<Common::Fiber>& GetHostContext(); + [[nodiscard]] Common::Fiber* GetHostContext() { + return host_context.get(); + } + + [[nodiscard]] const Common::Fiber* GetHostContext() const { + return host_context.get(); + } [[nodiscard]] ThreadState GetState() const { return thread_state & ThreadState::Mask; @@ -719,7 +725,7 @@ private: Common::SpinLock context_guard{}; // For emulation - std::shared_ptr<Common::Fiber> host_context{}; + std::unique_ptr<Common::Fiber> host_context{}; // For debugging std::vector<KSynchronizationObject*> wait_objects_for_debugging; |
