From 99e3c4d2fa3edf27cc7740573e2eb1b7f949e305 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 0e7f28c5b9..11b7063ad1 100644 --- a/src/common/fiber.cpp +++ b/src/common/fiber.cpp @@ -32,6 +32,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;