table of contents
std::this_thread(3cxx) | std::this_thread(3cxx) |
NAME¶
std::this_thread - ISO C++ 2011 namespace for interacting with the current thread.
SYNOPSIS¶
Functions¶
thread::id get_id () noexcept
this_thread::get_id template<typename _Rep , typename _Period > void
sleep_for (const chrono::duration< _Rep, _Period >
&__rtime)
this_thread::sleep_for template<typename _Clock , typename _Duration >
void sleep_until (const chrono::time_point< _Clock,
_Duration > &__atime)
this_thread::sleep_until void yield () noexcept
this_thread::yield
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]¶
this_thread::get_id
Definition at line 313 of file std_thread.h.
template<typename _Rep , typename _Period > void std::this_thread::sleep_for (const chrono::duration< _Rep, _Period > & __rtime) [inline]¶
this_thread::sleep_for
Definition at line 70 of file this_thread_sleep.h.
Referenced by sleep_until().
template<typename _Clock , typename _Duration > void std::this_thread::sleep_until (const chrono::time_point< _Clock, _Duration > & __atime) [inline]¶
this_thread::sleep_until
Definition at line 92 of file this_thread_sleep.h.
References sleep_for().
void std::this_thread::yield () [inline], [noexcept]¶
this_thread::yield
Definition at line 326 of file std_thread.h.
Author¶
Generated automatically by Doxygen for libstdc++ from the source code.
Thu Feb 16 2023 | libstdc++ |