std::cv_status
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 <condition_variable>
|
||
| enum class cv_status; |
(desde C++11) | |
La enumeración
std::cv_status ámbito describe si una espera temporizada devuelto por tiempo de espera o no .Original:
The scoped enumeration
std::cv_status describes whether a timed wait returned because of timeout or not.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.
std::cv_status es utilizada por los métodos wait_for y wait_until de std::condition_variable y .. std::condition_variable_anyOriginal:
std::cv_status is used by the wait_for and wait_until methods of std::condition_variable and std::condition_variable_any.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] Constantes de miembros
| Constant
Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Explanation |
no_timeout
|
la variable de condición se despertó con
notify_all, notify_one, o falsamente Original: the condition variable was awakened with notify_all, notify_one, or spuriously The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
timeout
|
la variable de condición fue despertado por expiración de tiempo de espera
Original: the condition variable was awakened by timeout expiration The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[editar] Ver también
| Bloquea el subproceso actual hasta que la variable condición es despertado o después del tiempo de espera especificado Original: blocks the current thread until the condition variable is woken up or after the specified timeout 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 miembro público de std::condition_variable)
| |
| Bloquea el subproceso actual hasta que la variable condición es despertado o después del tiempo de espera especificado Original: blocks the current thread until the condition variable is woken up or after the specified timeout 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 miembro público de std::condition_variable_any)
| |
| Bloquea el subproceso actual hasta que la variable condición es despertado o hasta que punto se especifica el tiempo ha sido alcanzada Original: blocks the current thread until the condition variable is woken up or until specified time point 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. (función miembro público de std::condition_variable)
| |
| Bloquea el subproceso actual hasta que la variable condición es despertado o hasta que punto se especifica el tiempo ha sido alcanzada Original: blocks the current thread until the condition variable is woken up or until specified time point 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. (función miembro público de std::condition_variable_any)
|

