]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/coroutine/include/boost/coroutine/detail/trampoline_pull.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / coroutine / include / boost / coroutine / detail / trampoline_pull.hpp
CommitLineData
7c673cae
FG
1
2// Copyright Oliver Kowalke 2009.
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_TRAMPOLINE_PULL_H
8#define BOOST_COROUTINES_DETAIL_TRAMPOLINE_PULL_H
9
10#include <boost/assert.hpp>
11#include <boost/config.hpp>
12#include <boost/context/detail/fcontext.hpp>
13#include <boost/cstdint.hpp>
14
15#include <boost/coroutine/detail/config.hpp>
16#include <boost/coroutine/detail/data.hpp>
17
18#ifdef BOOST_HAS_ABI_HEADERS
19# include BOOST_ABI_PREFIX
20#endif
21
22namespace boost {
23namespace coroutines {
24namespace detail {
25
26template< typename Coro >
27void trampoline_pull( context::detail::transfer_t t)
28{
29 typedef typename Coro::param_type param_type;
30
31 data_t * data = static_cast< data_t * >( t.data);
32 data->from->ctx_ = t.fctx;
33 param_type * param(
34 static_cast< param_type * >( data->data) );
35 BOOST_ASSERT( 0 != param);
36
37 Coro * coro(
38 static_cast< Coro * >( param->coro) );
39 BOOST_ASSERT( 0 != coro);
40
41 coro->run();
42}
43
44}}}
45
46#ifdef BOOST_HAS_ABI_HEADERS
47# include BOOST_ABI_SUFFIX
48#endif
49
50#endif // BOOST_COROUTINES_DETAIL_TRAMPOLINE_PULL_H