coroutine2
coroutine2 copied to clipboard
Boost.Coroutine2
We are in the process of making B2 build changes to all of the B2 build files to support "modular" consumption of the Boost Libraries by users. See this list...
Hello, I am currently modeling multiple producers using Boost.Coroutine2 and storing them in a container (std::vector). My goal is to leverage OpenMP to accelerate the calls of these coroutines on...
According to the documentation: 1. push_type does not enter coroutine-function on construction; 2. the first call of push_type::operator() synthesizes a complementary pull_type and passes it as reference to coroutine-function But...
This is part of the effort to make the Boost libraries "modular" for build and consumption. See https://lists.boost.org/Archives/boost/2024/01/255704.php and https://github.com/grafikrobot/boost-b2-modular/blob/b2-modular/README.adoc for more information. This PR depends on the following other...
More details at https://wg21.link/P1413R3 Relates https://github.com/userver-framework/userver/issues/620
windows, using boost.coroutine2, cannot generate dump (using mini dump) if a crash occurs in the coroutine function. As long as boost.coroutine2 is not used, the dump file can be generated....
I have fixed some minor mistakes in the documentation.
The documentation for pull_type::operator= in Boost.Coroutine2 is currently misleading. It states: ``` Effects: Destroys the internal data of *this and moves the internal data of other to *this. other becomes...