std::this_thread::sleep_until
Aus cppreference.com
![]() | This page has been machine-translated from the English version of the wiki using Google Translate. The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
definiert in Header <thread> | ||
template<class Clock, class Duration > void sleep_until(conststd::chrono::time_point<Clock,Duration>& sleep_time ); | (seit C++11) | |
Blockiert die Ausführung des aktuellen Thread, bis festgelegt
sleep_time
erreicht wurde. Darf nicht länger als bis zum sleep_time
erreicht worden blockieren .Original:
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.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Inhaltsverzeichnis |
[Bearbeiten]Parameter
sleep_time | - | Zeit bis zu blockieren Original: time to block until The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[Bearbeiten]Rückgabewert
(None)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten]Ausnahmen
[Bearbeiten]Siehe auch
(C++11) | stoppt die Ausführung des aktuellen Threads für eine bestimmte Zeitdauer Original: stops the execution of the current thread for a specified time duration The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) |