Lines Matching refs:__thread_struct
100 __thread_specific_ptr<__thread_struct>& __thread_local_data() {
105 alignas(__thread_specific_ptr<__thread_struct>) static char __b[sizeof(__thread_specific_ptr<__thread_struct>)];
106 static __thread_specific_ptr<__thread_struct>* __p = new (__b) __thread_specific_ptr<__thread_struct>();
161 // __thread_struct
163 __thread_struct::__thread_struct() : __p_(new __thread_struct_imp) {}
165 __thread_struct::~__thread_struct() { delete __p_; }
167 void __thread_struct::notify_all_at_thread_exit(condition_variable* cv, mutex* m) {
171 void __thread_struct::__make_ready_at_thread_exit(__assoc_sub_state* __s) { __p_->__make_ready_at_thread_exit(__s); }