Offers the operating system the opportunity to schedule another thread.
| 319 | inline tbb_thread::id get_id() { return internal::thread_get_id_v3(); } |
| 320 | //! Offers the operating system the opportunity to schedule another thread. |
| 321 | inline void yield() { internal::thread_yield_v3(); } |
| 322 | //! The current thread blocks at least until the time specified. |
| 323 | inline void sleep(const tick_count::interval_t &i) { |
| 324 | internal::thread_sleep_v3(i); |
nothing calls this directly
no test coverage detected