summaryrefslogtreecommitdiffstats
path: root/src/common/fiber.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2022-07-02 18:33:49 +0200
committerLiam <byteslice@airmail.cc>2022-07-02 18:33:49 +0200
commited0319cfed2c99e6366aaf725d96bb28a9332e4d (patch)
tree1598e6d320005e0d177106e28ebc6728234f1f24 /src/common/fiber.h
parentMerge pull request #7454 from FernandoS27/new-core-timing (diff)
downloadyuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar.gz
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar.bz2
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar.lz
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar.xz
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.tar.zst
yuzu-ed0319cfed2c99e6366aaf725d96bb28a9332e4d.zip
Diffstat (limited to '')
-rw-r--r--src/common/fiber.h7
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();