From 11f80226a926bede639fbe1aadc849cc6b306f44 Mon Sep 17 00:00:00 2001 From: lizzie Date: Tue, 13 Jan 2026 10:42:46 +0000 Subject: [PATCH] fibers that don't immediately crash?!!?!?!!? --- src/common/fiber.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/fiber.cpp b/src/common/fiber.cpp index 69eca732eb..1b201c47af 100644 --- a/src/common/fiber.cpp +++ b/src/common/fiber.cpp @@ -33,6 +33,9 @@ struct Fiber::FiberImpl { boost::context::detail::fcontext_t context{}; boost::context::detail::fcontext_t rewind_context{}; + boost::context::detail::fcontext_t context{}; + boost::context::detail::fcontext_t rewind_context{}; + std::mutex guard; std::function entry_point; std::function rewind_point;