fix unwinding symmetric coroutine

This commit is contained in:
Oliver Kowalke
2014-03-12 17:39:45 +01:00
parent c913a541d1
commit a6e5fe64da
5 changed files with 124 additions and 32 deletions

View File

@@ -29,6 +29,36 @@ project boost/coroutine/example
<threading>multi
;
exe test_case
: test_case.cpp
exe chaining
: chaining.cpp
;
exe echo
: echo.cpp
;
exe exception
: exception.cpp
;
exe fibonacci
: fibonacci.cpp
;
exe layout
: layout.cpp
;
exe parallel
: parallel.cpp
;
exe power
: power.cpp
;
exe same_fringe
: same_fringe.cpp
;
exe segmented_stack
: segmented_stack.cpp
;
exe simple
: simple.cpp
;
exe unwind
: unwind.cpp
;

View File

@@ -41,3 +41,7 @@ exe dice_game
exe merge_arrays
: merge_arrays.cpp
;
exe unwind
: unwind.cpp
;

View File

@@ -0,0 +1,50 @@
// Copyright Oliver Kowalke 2009.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <cstdlib>
#include <iostream>
#include <boost/bind.hpp>
#include <boost/coroutine/all.hpp>
struct X : private boost::noncopyable
{
X() { std::cout << "X()" << std::endl; }
~X() { std::cout << "~X()" << std::endl; }
};
typedef boost::coroutines::symmetric_coroutine< void > coro_t;
coro_t::call_type * c1 = 0;
coro_t::call_type * c2 = 0;
void foo( coro_t::yield_type & yield)
{
X x;
std::cout << "foo() entered" << std::endl;
yield( * c2);
yield( * c2);
std::cout << "foo() finished" << std::endl;
}
void bar( coro_t::yield_type & yield)
{
std::cout << "bar() entered" << std::endl;
yield( * c1);
std::cout << "bar() finished" << std::endl;
}
int main( int argc, char * argv[])
{
coro_t::call_type coro1( foo);
coro_t::call_type coro2( bar);
c1 = & coro1;
c2 = & coro2;
coro1();
std::cout << "Done" << std::endl;
return EXIT_SUCCESS;
}