summaryrefslogtreecommitdiff
path: root/src/core/cpu_manager.h
diff options
context:
space:
mode:
authorGravatar bunnei2021-03-04 23:59:06 -0800
committerGravatar GitHub2021-03-04 23:59:06 -0800
commit34a3ee16319ddcfe855249c2fe48b6e7b6441526 (patch)
tree24ff38e19a77b60201ee028b6abb476d82fc16d0 /src/core/cpu_manager.h
parentMerge pull request #5989 from ReinUsesLisp/cmdpool (diff)
parentcore: Switch to unique_ptr for usage of Common::Fiber. (diff)
downloadyuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.gz
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.tar.xz
yuzu-34a3ee16319ddcfe855249c2fe48b6e7b6441526.zip
Merge pull request #6006 from bunnei/fiber-unique-ptr
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/cpu_manager.h b/src/core/cpu_manager.h
index 17420c941..5ea149f1f 100644
--- a/src/core/cpu_manager.h
+++ b/src/core/cpu_manager.h
@@ -83,7 +83,7 @@ private:
83 void RunThread(std::size_t core); 83 void RunThread(std::size_t core);
84 84
85 struct CoreData { 85 struct CoreData {
86 std::shared_ptr<Common::Fiber> host_context; 86 std::unique_ptr<Common::Fiber> host_context;
87 std::unique_ptr<Common::Event> enter_barrier; 87 std::unique_ptr<Common::Event> enter_barrier;
88 std::unique_ptr<Common::Event> exit_barrier; 88 std::unique_ptr<Common::Event> exit_barrier;
89 std::atomic<bool> is_running; 89 std::atomic<bool> is_running;