std::this_thread::sleep_for

From Cppreference

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

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

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

  (C++11 feature)

[edit] See also

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