123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef BOOST_COROUTINES_DETAIL_PREALLOCATED_H
- #define BOOST_COROUTINES_DETAIL_PREALLOCATED_H
- #include <cstddef>
- #include <boost/config.hpp>
- #include <boost/coroutine/detail/config.hpp>
- #include <boost/coroutine/stack_context.hpp>
- #ifdef BOOST_HAS_ABI_HEADERS
- # include BOOST_ABI_PREFIX
- #endif
- namespace boost {
- namespace coroutines {
- namespace detail {
- struct BOOST_COROUTINES_DECL preallocated {
- void * sp;
- std::size_t size;
- stack_context sctx;
- preallocated() BOOST_NOEXCEPT :
- sp( 0), size( 0), sctx() {
- }
- preallocated( void * sp_, std::size_t size_, stack_context sctx_) BOOST_NOEXCEPT :
- sp( sp_), size( size_), sctx( sctx_) {
- }
- };
- }}}
- #ifdef BOOST_HAS_ABI_HEADERS
- # include BOOST_ABI_SUFFIX
- #endif
- #endif
|