The current thread blocks at least until the time specified.
| 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); |
| 325 | } |
| 326 | } // namespace this_tbb_thread |
| 327 | |
| 328 | } // namespace tbb |
nothing calls this directly
no test coverage detected