diff options
author | bunnei <bunneidev@gmail.com> | 2020-06-28 12:37:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-28 12:37:50 -0400 |
commit | b05795d704e0c194215f815a5703db09e524b59a (patch) | |
tree | ecf4023b4ee0c91555c1d8263762fcb9dcb04a17 /src/common/fiber.cpp | |
parent | 8596a127724e9d7e27c4d7d9becd323c8d6d4f8e (diff) | |
parent | 2f8947583f2f0af4058600243d6c1d244e3c4890 (diff) |
Merge pull request #3955 from FernandoS27/prometheus-2b
Remake Kernel Scheduling, CPU Management & Boot Management (Prometheus)
Diffstat (limited to 'src/common/fiber.cpp')
-rw-r--r-- | src/common/fiber.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/common/fiber.cpp b/src/common/fiber.cpp index f97ad433b..1c1d09ccb 100644 --- a/src/common/fiber.cpp +++ b/src/common/fiber.cpp @@ -54,9 +54,7 @@ Fiber::Fiber(std::function<void(void*)>&& entry_point_func, void* start_paramete impl->handle = CreateFiber(default_stack_size, &FiberStartFunc, this); } -Fiber::Fiber() { - impl = std::make_unique<FiberImpl>(); -} +Fiber::Fiber() : impl{std::make_unique<FiberImpl>()} {} Fiber::~Fiber() { if (released) { @@ -116,8 +114,8 @@ std::shared_ptr<Fiber> Fiber::ThreadToFiber() { struct Fiber::FiberImpl { alignas(64) std::array<u8, default_stack_size> stack; - u8* stack_limit; alignas(64) std::array<u8, default_stack_size> rewind_stack; + u8* stack_limit; u8* rewind_stack_limit; boost::context::detail::fcontext_t context; boost::context::detail::fcontext_t rewind_context; @@ -168,9 +166,7 @@ void Fiber::SetRewindPoint(std::function<void(void*)>&& rewind_func, void* start rewind_parameter = start_parameter; } -Fiber::Fiber() { - impl = std::make_unique<FiberImpl>(); -} +Fiber::Fiber() : impl{std::make_unique<FiberImpl>()} {} Fiber::~Fiber() { if (released) { |