std::this_thread::sleep_for

From Cppreference

Jump to: navigation, search
Defined in header <thread>

template< class Rep, class Period >
void sleep_for( std::chrono::duration<Rep,Period> sleep_duration );
(since C++11)

Blocks the execution of the current thread for specified sleep_duration. May block for longer than sleep_duration.

Contents

[edit] Parameters

sleep_duration - time duration to sleep

[edit] Return value

(none)

[edit] Exceptions

noexcept specification:  
noexcept

  (since C++11)

[edit] See also

(C++11)
stops the execution of the current thread until a specified time point
(function)