diff options
author | bunnei <bunneidev@gmail.com> | 2021-03-05 17:08:17 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 17:08:17 -0800 |
commit | a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37 (patch) | |
tree | 503cbe4fb52939512f8ee0c976e46e9293de3c4c /src/core/cpu_manager.h | |
parent | 9d010be4837cc88e28c700f640c1c101092d482a (diff) |
Revert "core: Switch to unique_ptr for usage of Common::Fiber."
Diffstat (limited to 'src/core/cpu_manager.h')
-rw-r--r-- | src/core/cpu_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cpu_manager.h b/src/core/cpu_manager.h index 5ea149f1fc..17420c9418 100644 --- a/src/core/cpu_manager.h +++ b/src/core/cpu_manager.h @@ -83,7 +83,7 @@ private: void RunThread(std::size_t core); struct CoreData { - std::unique_ptr<Common::Fiber> host_context; + std::shared_ptr<Common::Fiber> host_context; std::unique_ptr<Common::Event> enter_barrier; std::unique_ptr<Common::Event> exit_barrier; std::atomic<bool> is_running; |