summaryrefslogtreecommitdiffstats
path: root/src/common/fiber.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-02-27 20:56:04 +0100
committerbunnei <bunneidev@gmail.com>2021-02-27 20:56:04 +0100
commit51fb0a6f9647ba199da10fe4f018ee36e44e65ba (patch)
tree89cd2ad6dfb310587aa546bb7b9847762795f08f /src/common/fiber.h
parentMerge pull request #5953 from bunnei/memory-refactor-1 (diff)
downloadyuzu-51fb0a6f9647ba199da10fe4f018ee36e44e65ba.tar
yuzu-51fb0a6f9647ba199da10fe4f018ee36e44e65ba.tar.gz
yuzu-51fb0a6f9647ba199da10fe4f018ee36e44e65ba.tar.bz2
yuzu-51fb0a6f9647ba199da10fe4f018ee36e44e65ba.tar.lz
yuzu-51fb0a6f9647ba199da10fe4f018ee36e44e65ba.tar.xz
yuzu-51fb0a6f9647ba199da10fe4f018ee36e44e65ba.tar.zst
yuzu-51fb0a6f9647ba199da10fe4f018ee36e44e65ba.zip
Diffstat (limited to '')
-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 f7f587f8c..6924f7996 100644
--- a/src/common/fiber.h
+++ b/src/common/fiber.h
@@ -41,8 +41,8 @@ public:
/// Yields control from Fiber 'from' to Fiber 'to'
/// Fiber 'from' must be the currently running fiber.
- static void YieldTo(std::shared_ptr<Fiber> from, std::shared_ptr<Fiber> to);
- [[nodiscard]] static std::shared_ptr<Fiber> ThreadToFiber();
+ static void YieldTo(Fiber* from, Fiber* to);
+ [[nodiscard]] static std::unique_ptr<Fiber> ThreadToFiber();
void SetRewindPoint(std::function<void(void*)>&& rewind_func, void* rewind_param);