File indexing completed on 2024-11-15 09:05:26
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_FIBERS_FIXEDSIZE_STACK_H
0008 #define BOOST_FIBERS_FIXEDSIZE_STACK_H
0009
0010 #include <boost/config.hpp>
0011 #include <boost/context/fixedsize_stack.hpp>
0012
0013 #include <boost/fiber/detail/config.hpp>
0014
0015 #ifdef BOOST_HAS_ABI_HEADERS
0016 # include BOOST_ABI_PREFIX
0017 #endif
0018
0019 namespace boost {
0020 namespace fibers {
0021
0022 using fixedsize_stack = boost::context::fixedsize_stack;
0023 #if !defined(BOOST_USE_SEGMENTED_STACKS)
0024 using default_stack = boost::context::default_stack;
0025 #endif
0026
0027 }}
0028
0029 #ifdef BOOST_HAS_ABI_HEADERS
0030 # include BOOST_ABI_SUFFIX
0031 #endif
0032
0033 #endif