Searched defs:shared_state_base (Results 1 – 2 of 2) sorted by relevance
22 struct shared_state_base { struct23 void notify_deferred() {} in notify_deferred()152 struct shared_state_base : enable_shared_from_this<shared_state_base> struct154 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 …]
37 class shared_state_base { class