GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::this_thread::sleep_for(3) C++ Standard Libary std::this_thread::sleep_for(3)

std::this_thread::sleep_for - std::this_thread::sleep_for


Defined in header <thread>
template< class Rep, class Period >
void sleep_for( const std::chrono::duration<Rep, Period>& (since C++11)
sleep_duration );


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.


sleep_duration - time duration to sleep.


(none)


Any exception thrown by clock, time_point, or duration during the execution (clocks,
time points, and durations provided by the standard library never throw).

// Run this code


#include <iostream>
#include <chrono>
#include <thread>


int main()
{
using namespace std::chrono_literals;
std::cout << "Hello waiter\n" << std::flush;
auto start = std::chrono::high_resolution_clock::now();
std::this_thread::sleep_for(2000ms);
auto end = std::chrono::high_resolution_clock::now();
std::chrono::duration<double, std::milli> elapsed = end-start;
std::cout << "Waited " << elapsed.count() << " ms\n";
}


Hello waiter
Waited 2000.12 ms


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

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.