Home
last modified time | relevance | path

Searched defs:control_block (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/coroutine2/detail/
Dpull_control_block_cc.hpp27 struct pull_coroutine< T >::control_block { struct in boost::coroutines2::detail::pull_coroutine
28 boost::context::fiber c;
29 typename push_coroutine< T >::control_block * other;
30 state_t state;
31 std::exception_ptr except;
32 bool bvalid;
33 typename std::aligned_storage< sizeof( T), alignof( T) >::type storage;
60 struct pull_coroutine< T & >::control_block { struct in boost::coroutines2::detail::pull_coroutine
61 struct holder {
69 boost::context::fiber c;
[all …]
Dpush_control_block_cc.hpp26 struct push_coroutine< T >::control_block { struct in boost::coroutines2::detail::push_coroutine
27 boost::context::fiber c;
28 typename pull_coroutine< T >::control_block * other;
29 state_t state;
30 std::exception_ptr except;
52 struct push_coroutine< T & >::control_block { struct in boost::coroutines2::detail::push_coroutine
53 boost::context::fiber c;
54 typename pull_coroutine< T & >::control_block * other;
55 state_t state;
56 std::exception_ptr except;
[all …]