From Cppreference
|
|
|
|
|
template< typename Clock, typename Duration > void sleep_until( const std::chrono::time_point<Clock,Duration>& sleep_time );
|
|
(C++11 feature)
|
|
|
Blocks the execution of the current thread until specified sleep_time has been reached. May block for longer than until sleep_time has been reached.
[edit] Parameters
sleep_time
|
-
|
time to block until
|
[edit] Return value
(none)
[edit] Exceptions
[edit] See also
|
|
stops the execution of the current thread for a specified time duration (function)
|