Home
last modified time | relevance | path

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

/oneTBB/src/tbb/
H A Dgovernor.h55 static basic_tls<thread_data*> theTLS; variable
100 thread_data* td = theTLS.get(); in get_thread_data()
105 td = theTLS.get(); in get_thread_data()
111 theTLS.set(&td); in set_thread_data()
115 theTLS.set(nullptr); in clear_thread_data()
119 return theTLS.get(); in get_thread_data_if_initialized()
123 return theTLS.get() == td; in is_thread_data_set()
H A Dgovernor.cpp64 int status = theTLS.create(auto_terminate); in acquire_resources()
66 int status = theTLS.create(); in acquire_resources()
79 …__TBB_ASSERT(!(__TBB_InitOnce::initialization_done() && theTLS.get()), "TBB is unloaded while thre… in release_resources()
81 int status = theTLS.destroy(); in release_resources()
H A Dmain.cpp39 basic_tls<thread_data*> governor::theTLS; member in tbb::detail::r1::governor