1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // 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)
- namespace boost {
- namespace coroutines {
- namespace detail {
- enum flag_t
- {
- flag_started = 1 << 1,
- flag_running = 1 << 2,
- flag_complete = 1 << 3,
- flag_unwind_stack = 1 << 4,
- flag_force_unwind = 1 << 5
- };
- struct unwind_t
- {
- enum flag_t
- { force_unwind = 1 };
- };
- struct synthesized_t
- {
- enum flag_t
- { syntesized = 1 };
- };
- }}}
|