mirror of
https://github.com/boostorg/fiber.git
synced 2026-01-27 19:02:09 +00:00
51 lines
977 B
C++
51 lines
977 B
C++
#include <cstdlib>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <thread>
|
|
|
|
#include <boost/bind.hpp>
|
|
#include <boost/intrusive_ptr.hpp>
|
|
|
|
#include <boost/fiber/all.hpp>
|
|
|
|
inline
|
|
void fn( std::string const& str, int n)
|
|
{
|
|
for ( int i = 0; i < n; ++i)
|
|
{
|
|
std::cout << i << ": " << str << std::endl;
|
|
boost::this_fiber::yield();
|
|
}
|
|
}
|
|
|
|
void foo() {
|
|
try
|
|
{
|
|
boost::fibers::fiber f1( fn, "abc", 5);
|
|
std::cerr << "f1 : " << f1.get_id() << std::endl;
|
|
|
|
f1.join();
|
|
}
|
|
catch ( std::exception const& e)
|
|
{ std::cerr << "exception: " << e.what() << std::endl; }
|
|
catch (...)
|
|
{ std::cerr << "unhandled exception" << std::endl; }
|
|
}
|
|
|
|
int main()
|
|
{
|
|
try
|
|
{
|
|
foo();
|
|
std::cout << "done." << std::endl;
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
catch ( std::exception const& e)
|
|
{ std::cerr << "exception: " << e.what() << std::endl; }
|
|
catch (...)
|
|
{ std::cerr << "unhandled exception" << std::endl; }
|
|
return EXIT_FAILURE;
|
|
}
|