Registry / async / boost-thread

boost-thread

JSON →
library1.90.0vcpkgunverified

Boost thread module provides portable C++ multithreading and synchronization primitives.

vcpkg install boost-thread
INSTALL
IMPORT
SIG · BOOST-THREAD
B
boost-thread
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/thread.hpp
#include <boost/thread.hpp>

Create and join a thread

#include <boost/thread.hpp> #include <iostream> void worker() { std::cout << "Hello from thread!" << std::endl; } int main() { boost::thread t(worker); t.join(); return 0; }
Debug
Known issues
gotchaBoost.Thread requires linking against the boost_thread and boost_chrono libraries; header-only usage is not supported.
fix
Ensure you link with Boost::thread and Boost::chrono in CMake.
affects: all
Upgrade
Version history
1.90.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
28 hits · last 30 days
node
24
OpenAI (training)
1
Resources

No resource links recorded.

boost-thread — pip install boost-thread · libregistry