]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/coroutine/detail/preallocated.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / coroutine / detail / preallocated.hpp
1
2 // Copyright Oliver Kowalke 2015.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6
7 #ifndef BOOST_COROUTINES_DETAIL_PREALLOCATED_H
8 #define BOOST_COROUTINES_DETAIL_PREALLOCATED_H
9
10 #include <cstddef>
11
12 #include <boost/config.hpp>
13
14 #include <boost/coroutine/detail/config.hpp>
15 #include <boost/coroutine/stack_context.hpp>
16
17 #ifdef BOOST_HAS_ABI_HEADERS
18 # include BOOST_ABI_PREFIX
19 #endif
20
21 namespace boost {
22 namespace coroutines {
23 namespace detail {
24
25 struct preallocated {
26 void * sp;
27 std::size_t size;
28 stack_context sctx;
29
30 preallocated() BOOST_NOEXCEPT :
31 sp( 0), size( 0), sctx() {
32 }
33
34 preallocated( void * sp_, std::size_t size_, stack_context sctx_) BOOST_NOEXCEPT :
35 sp( sp_), size( size_), sctx( sctx_) {
36 }
37 };
38
39 }}}
40
41 #ifdef BOOST_HAS_ABI_HEADERS
42 # include BOOST_ABI_SUFFIX
43 #endif
44
45 #endif // BOOST_COROUTINES_DETAIL_PREALLOCATED_H