diff options
author | bunnei <bunneidev@gmail.com> | 2021-03-06 02:08:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-06 02:08:48 +0100 |
commit | 7b29a8ce4e1f94bec7e7828fb1674e1b43b937c5 (patch) | |
tree | 503cbe4fb52939512f8ee0c976e46e9293de3c4c /src/common/fiber.h | |
parent | Merge pull request #6034 from Morph1984/mbedtls (diff) | |
parent | Revert "core: Switch to unique_ptr for usage of Common::Fiber." (diff) | |
download | yuzu-7b29a8ce4e1f94bec7e7828fb1674e1b43b937c5.tar yuzu-7b29a8ce4e1f94bec7e7828fb1674e1b43b937c5.tar.gz yuzu-7b29a8ce4e1f94bec7e7828fb1674e1b43b937c5.tar.bz2 yuzu-7b29a8ce4e1f94bec7e7828fb1674e1b43b937c5.tar.lz yuzu-7b29a8ce4e1f94bec7e7828fb1674e1b43b937c5.tar.xz yuzu-7b29a8ce4e1f94bec7e7828fb1674e1b43b937c5.tar.zst yuzu-7b29a8ce4e1f94bec7e7828fb1674e1b43b937c5.zip |
Diffstat (limited to 'src/common/fiber.h')
-rw-r--r-- | src/common/fiber.h | 4 |
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: /// Yields control from Fiber 'from' to Fiber 'to' /// Fiber 'from' must be the currently running fiber. - static void YieldTo(Fiber* from, Fiber* to); - [[nodiscard]] static std::unique_ptr<Fiber> ThreadToFiber(); + static void YieldTo(std::shared_ptr<Fiber> from, std::shared_ptr<Fiber> to); + [[nodiscard]] static std::shared_ptr<Fiber> ThreadToFiber(); void SetRewindPoint(std::function<void(void*)>&& rewind_func, void* rewind_param); |