Revert "core: Switch to unique_ptr for usage of Common::Fiber."
This commit is contained in:
parent
9d010be483
commit
a5ab85ac37
10 changed files with 59 additions and 58 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue