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.cpp | |
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 '')
-rw-r--r-- | src/common/fiber.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/common/fiber.cpp b/src/common/fiber.cpp index b8e98b12a..3c1eefcb7 100644 --- a/src/common/fiber.cpp +++ b/src/common/fiber.cpp @@ -24,7 +24,7 @@ struct Fiber::FiberImpl { std::function<void(void*)> rewind_point; void* rewind_parameter{}; void* start_parameter{}; - Fiber* previous_fiber; + std::shared_ptr<Fiber> previous_fiber; bool is_thread_fiber{}; bool released{}; @@ -47,7 +47,7 @@ void Fiber::Start(boost::context::detail::transfer_t& transfer) { ASSERT(impl->previous_fiber != nullptr); impl->previous_fiber->impl->context = transfer.fctx; impl->previous_fiber->impl->guard.unlock(); - impl->previous_fiber = nullptr; + impl->previous_fiber.reset(); impl->entry_point(impl->start_parameter); UNREACHABLE(); } @@ -116,20 +116,20 @@ void Fiber::Rewind() { boost::context::detail::jump_fcontext(impl->rewind_context, this); } -void Fiber::YieldTo(Fiber* from, Fiber* to) { +void Fiber::YieldTo(std::shared_ptr<Fiber> from, std::shared_ptr<Fiber> to) { ASSERT_MSG(from != nullptr, "Yielding fiber is null!"); ASSERT_MSG(to != nullptr, "Next fiber is null!"); to->impl->guard.lock(); to->impl->previous_fiber = from; - auto transfer = boost::context::detail::jump_fcontext(to->impl->context, to); + auto transfer = boost::context::detail::jump_fcontext(to->impl->context, to.get()); ASSERT(from->impl->previous_fiber != nullptr); from->impl->previous_fiber->impl->context = transfer.fctx; from->impl->previous_fiber->impl->guard.unlock(); - from->impl->previous_fiber = nullptr; + from->impl->previous_fiber.reset(); } -std::unique_ptr<Fiber> Fiber::ThreadToFiber() { - std::unique_ptr<Fiber> fiber = std::unique_ptr<Fiber>{new Fiber()}; +std::shared_ptr<Fiber> Fiber::ThreadToFiber() { + std::shared_ptr<Fiber> fiber = std::shared_ptr<Fiber>{new Fiber()}; fiber->impl->guard.lock(); fiber->impl->is_thread_fiber = true; return fiber; |