Home
last modified time | relevance | path

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

/third_party/boost/boost/thread/
Dfuture.hpp22 struct shared_state_base { struct
23 void notify_deferred() {} in notify_deferred()
152 struct shared_state_base : enable_shared_from_this<shared_state_base> struct
154 typedef std::list<boost::condition_variable_any*> waiter_list;
155 typedef waiter_list::iterator notify_when_ready_handle;
157 typedef shared_ptr<shared_state_base> continuation_ptr_type;
158 typedef std::vector<continuation_ptr_type> continuations_type;
160 boost::exception_ptr exception;
161 bool done;
162 bool is_valid_;
[all …]
/third_party/boost/boost/fiber/future/detail/
Dshared_state.hpp37 class shared_state_base { class