Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:31

0001 
0002 //          Copyright Oliver Kowalke 2009.
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //    (See accompanying file LICENSE_1_0.txt or copy at
0005 //          http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 #ifndef BOOST_COROUTINES_DETAIL_DATA_H
0008 #define BOOST_COROUTINES_DETAIL_DATA_H
0009 
0010 #include <boost/config.hpp>
0011 
0012 #include <boost/coroutine/detail/coroutine_context.hpp>
0013 
0014 #ifdef BOOST_HAS_ABI_HEADERS
0015 #  include BOOST_ABI_PREFIX
0016 #endif
0017 
0018 namespace boost {
0019 namespace coroutines {
0020 namespace detail {
0021 
0022 struct data_t
0023 {
0024     coroutine_context   *   from;
0025     void                *   data;
0026 };
0027 
0028 }}}
0029 
0030 #ifdef BOOST_HAS_ABI_HEADERS
0031 #  include BOOST_ABI_SUFFIX
0032 #endif
0033 
0034 #endif // BOOST_COROUTINES_DETAIL_DATA_H