summaryrefslogtreecommitdiff
path: root/src/common/fiber.h
diff options
context:
space:
mode:
authorGravatar bunnei2021-03-05 17:08:17 -0800
committerGravatar GitHub2021-03-05 17:08:17 -0800
commita5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37 (patch)
tree503cbe4fb52939512f8ee0c976e46e9293de3c4c /src/common/fiber.h
parentMerge pull request #6034 from Morph1984/mbedtls (diff)
downloadyuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.tar.gz
yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.tar.xz
yuzu-a5ab85ac37bbfed739e75ba9c2226b1e6bf1fd37.zip
Revert "core: Switch to unique_ptr for usage of Common::Fiber."
Diffstat (limited to 'src/common/fiber.h')
-rw-r--r--src/common/fiber.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/fiber.h b/src/common/fiber.h
index 6924f7996..f7f587f8c 100644
--- a/src/common/fiber.h
+++ b/src/common/fiber.h
@@ -41,8 +41,8 @@ public:
41 41
42 /// Yields control from Fiber 'from' to Fiber 'to' 42 /// Yields control from Fiber 'from' to Fiber 'to'
43 /// Fiber 'from' must be the currently running fiber. 43 /// Fiber 'from' must be the currently running fiber.
44 static void YieldTo(Fiber* from, Fiber* to); 44 static void YieldTo(std::shared_ptr<Fiber> from, std::shared_ptr<Fiber> to);
45 [[nodiscard]] static std::unique_ptr<Fiber> ThreadToFiber(); 45 [[nodiscard]] static std::shared_ptr<Fiber> ThreadToFiber();
46 46
47 void SetRewindPoint(std::function<void(void*)>&& rewind_func, void* rewind_param); 47 void SetRewindPoint(std::function<void(void*)>&& rewind_func, void* rewind_param);
48 48