| CARVIEW |
Select Language
HTTP/2 301
tt-server: t=1767103415129630 D=3925
location: https://en.cppreference.com/w/cpp/thread/sleep_for.html
content-length: 263
content-type: text/html; charset=iso-8859-1
date: Tue, 30 Dec 2025 14:03:35 GMT
server: Apache
HTTP/2 200
tt-server: t=1767103415347620 D=2190
vary: User-Agent
last-modified: Tue, 27 May 2025 00:42:16 GMT
etag: "11a34-63613560c6d36"
accept-ranges: bytes
content-length: 72244
content-type: text/html
date: Tue, 30 Dec 2025 14:03:35 GMT
server: Apache
std::this_thread::sleep_for - cppreference.com
Namespaces
std::this_thread::sleep_for
From cppreference.com
C++
Concurrency support library
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Defined in header <thread>
|
||
| template< class Rep, class Period > void sleep_for( const std::chrono::duration<Rep, Period>& sleep_duration ); |
(since C++11) | |
Blocks the execution of the current thread for at least the specified sleep_duration.
This function may block for longer than sleep_duration due to scheduling or resource contention delays.
The standard recommends that a steady clock is used to measure the duration. If an implementation uses a system clock instead, the wait time may also be sensitive to clock adjustments.
Contents |
[edit] Parameters
| sleep_duration | - | time duration to sleep |
[edit] Return value
(none)
[edit] Exceptions
Any exception thrown by clock, time_point, or duration during the execution (clocks, time points, and durations provided by the standard library never throw).
[edit] Example
Run this code
#include <chrono> #include <iostream> #include <thread> int main() { using namespace std::chrono_literals; std::cout << "Hello waiter\n" << std::flush; const auto start = std::chrono::high_resolution_clock::now(); std::this_thread::sleep_for(2000ms); const auto end = std::chrono::high_resolution_clock::now(); const std::chrono::duration<double, std::milli> elapsed = end - start; std::cout << "Waited " << elapsed << '\n'; }
Possible output:
Hello waiter Waited 2000.13 ms
[edit] See also
| (C++11) |
stops the execution of the current thread until a specified time point (function) [edit] |