Chris@16: Chris@16: // Copyright Oliver Kowalke 2009. Chris@16: // Distributed under the Boost Software License, Version 1.0. Chris@16: // (See accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: #ifndef BOOST_COROUTINES_FLAGS_H Chris@16: #define BOOST_COROUTINES_FLAGS_H Chris@16: Chris@16: namespace boost { Chris@16: namespace coroutines { Chris@16: Chris@16: enum flag_unwind_t Chris@16: { Chris@16: stack_unwind = 0, Chris@16: no_stack_unwind Chris@16: }; Chris@16: Chris@16: enum flag_fpu_t Chris@16: { Chris@16: fpu_preserved = 0, Chris@16: fpu_not_preserved Chris@16: }; Chris@16: Chris@16: }} Chris@16: Chris@16: #endif // BOOST_COROUTINES_FLAGS_H