std::this_thread::sleep_until
De 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. |
| Definido en la cabecera <thread>
|
||
| template< class Clock, class Duration > void sleep_until( const std::chrono::time_point<Clock,Duration>& sleep_time ); |
(desde C++11) | |
Bloques de la ejecución del subproceso actual hasta
sleep_time especificado se ha alcanzado. Puede bloquear por más de sleep_time hasta que se haya alcanzado .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.
Contenido |
[editar] Parámetros
| sleep_time | - | tiempo para bloquear hasta
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. |
[editar] Valor de retorno
(Ninguno)
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.
[editar] Excepciones
[editar] Ver también
| (C++11) |
detiene la ejecución del subproceso actual durante una duración de tiempo especificado 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. (función) |

