std::this_thread(3) Library Functions Manual std::this_thread(3) NAME std::this_thread - ISO C++ 2011 namespace for interacting with the current thread. SYNOPSIS Functions thread::id get_id () noexcept The unique identifier of the current thread. template void sleep_for (const chrono::duration< _Rep, _Period > &__rtime) this_thread::sleep_for template void sleep_until (const chrono::time_point< _Clock, _Duration > &__atime) this_thread::sleep_until void yield () noexcept Allow the implementation to schedule a different thread. Detailed Description ISO C++ 2011 namespace for interacting with the current thread. C++11 30.3.2 [thread.thread.this] Namespace this_thread. Function Documentation thread::id std::this_thread::get_id () [inline], [noexcept] The unique identifier of the current thread. References std::forward(). template void std::this_thread::sleep_for (const chrono::duration< _Rep, _Period > & __rtime) [inline] this_thread::sleep_for References std::forward(). Referenced by sleep_until(). template void std::this_thread::sleep_until (const chrono::time_point< _Clock, _Duration > & __atime) [inline] this_thread::sleep_until References std::forward(), and sleep_for(). void std::this_thread::yield () [inline], [noexcept] Allow the implementation to schedule a different thread. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ std::this_thread(3)