Registry / async / boost-context

boost-context

JSON →
library1.90.0vcpkgunverified

Boost context module provides cooperative multitasking via coroutines and fibers.

vcpkg install boost-context
INSTALL
IMPORT
SIG · BOOST-CONTEXT
B
boost-context
asynccppv1.90.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

boost/context/all.hpp
#include <boost/context/all.hpp>

Create and resume a simple fiber using Boost.Context.

#include <boost/context/fiber.hpp> #include <iostream> int main() { boost::context::fiber f1([](boost::context::fiber&& f) { std::cout << "fiber1" << std::endl; return std::move(f); }); f1 = std::move(f1).resume(); return 0; }
Debug
Known issues
breakingBoost.Context requires architecture-specific assembly code; may not compile on all platforms without proper toolchain support.
fix
Ensure your target architecture is supported (x86, ARM, etc.) and that you are using a compatible compiler.
affects: all
Upgrade
Version history
1.90.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
45 hits · last 30 days
node
40
Amazon
1
Resources

No resource links recorded.

boost-context — pip install boost-context · libregistry