Home
last modified time | relevance | path

Searched refs:__thread_struct (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/src/
H A Dthread.cpp100 __thread_specific_ptr<__thread_struct>& __thread_local_data() { in __thread_local_data()
105 …alignas(__thread_specific_ptr<__thread_struct>) static char __b[sizeof(__thread_specific_ptr<__thr… in __thread_local_data()
106 …static __thread_specific_ptr<__thread_struct>* __p = new (__b) __thread_specific_ptr<__thread_stru… in __thread_local_data()
163 __thread_struct::__thread_struct() : __p_(new __thread_struct_imp) {} in __thread_struct() function in __thread_struct
165 __thread_struct::~__thread_struct() { delete __p_; } in ~__thread_struct()
167 void __thread_struct::notify_all_at_thread_exit(condition_variable* cv, mutex* m) { in notify_all_at_thread_exit()
171 void __thread_struct::__make_ready_at_thread_exit(__assoc_sub_state* __s) { __p_->__make_ready_at_t… in __make_ready_at_thread_exit()
H A Dcondition_variable.cpp64 tl_ptr.set_pointer(new __thread_struct); in notify_all_at_thread_exit()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__thread/
H A Dthread.h42 class _LIBCPP_EXPORTED_FROM_ABI __thread_struct; variable
46 _LIBCPP_EXPORTED_FROM_ABI __thread_specific_ptr<__thread_struct>& __thread_local_data();
48 class _LIBCPP_EXPORTED_FROM_ABI __thread_struct {
51 __thread_struct(const __thread_struct&);
52 __thread_struct& operator=(const __thread_struct&);
55 __thread_struct();
56 ~__thread_struct();
68 static_assert((is_same<_Tp, __thread_struct>::value), "");
208 typedef unique_ptr<__thread_struct> _TSPtr;
209 _TSPtr __tsp(new __thread_struct);
[all …]