Searched refs:theTLS (Results 1 – 3 of 3) sorted by relevance
55 static basic_tls<thread_data*> theTLS; variable100 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()
64 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()
39 basic_tls<thread_data*> governor::theTLS; member in tbb::detail::r1::governor