Lines Matching refs:td
80 cache_aligned_unique_ptr<thread_dispatcher> td = in make_thread_dispatcher() local
83 if (!governor::UsePrivateRML && td->my_server->default_concurrency() < workers_soft_limit) { in make_thread_dispatcher()
85 td->my_server->default_concurrency(), workers_soft_limit); in make_thread_dispatcher()
88 return td; in make_thread_dispatcher()
140 void threading_control_impl::register_thread(thread_data& td) { in register_thread() argument
141 my_cancellation_disseminator->register_thread(td); in register_thread()
143 void threading_control_impl::unregister_thread(thread_data& td) { in unregister_thread() argument
144 my_cancellation_disseminator->unregister_thread(td); in unregister_thread()
365 void threading_control::register_thread(thread_data& td) { in register_thread() argument
366 my_pimpl->register_thread(td); in register_thread()
369 void threading_control::unregister_thread(thread_data& td) { in unregister_thread() argument
370 my_pimpl->unregister_thread(td); in unregister_thread()