diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-07-06 00:20:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-06 00:20:39 +0200 |
commit | 07e3c56f0de7a1567b1ae443abb64b767a31ed8c (patch) | |
tree | 3bd7d56181d79c69988d3f6d1310d9137cbb482f /src/common/fiber.h | |
parent | Merge pull request #8477 from Docteh/less_global (diff) | |
parent | common/fiber: make fibers easier to use (diff) | |
download | yuzu-07e3c56f0de7a1567b1ae443abb64b767a31ed8c.tar yuzu-07e3c56f0de7a1567b1ae443abb64b767a31ed8c.tar.gz yuzu-07e3c56f0de7a1567b1ae443abb64b767a31ed8c.tar.bz2 yuzu-07e3c56f0de7a1567b1ae443abb64b767a31ed8c.tar.lz yuzu-07e3c56f0de7a1567b1ae443abb64b767a31ed8c.tar.xz yuzu-07e3c56f0de7a1567b1ae443abb64b767a31ed8c.tar.zst yuzu-07e3c56f0de7a1567b1ae443abb64b767a31ed8c.zip |
Diffstat (limited to 'src/common/fiber.h')
-rw-r--r-- | src/common/fiber.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/common/fiber.h b/src/common/fiber.h index 873604bc6..f24d333a3 100644 --- a/src/common/fiber.h +++ b/src/common/fiber.h @@ -29,7 +29,7 @@ namespace Common { */ class Fiber { public: - Fiber(std::function<void(void*)>&& entry_point_func, void* start_parameter); + Fiber(std::function<void()>&& entry_point_func); ~Fiber(); Fiber(const Fiber&) = delete; @@ -43,16 +43,13 @@ public: static void YieldTo(std::weak_ptr<Fiber> weak_from, Fiber& to); [[nodiscard]] static std::shared_ptr<Fiber> ThreadToFiber(); - void SetRewindPoint(std::function<void(void*)>&& rewind_func, void* rewind_param); + void SetRewindPoint(std::function<void()>&& rewind_func); void Rewind(); /// Only call from main thread's fiber void Exit(); - /// Changes the start parameter of the fiber. Has no effect if the fiber already started - void SetStartParameter(void* new_parameter); - private: Fiber(); |