std::condition_variable::wait_for
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody> template< class Rep, class Period > std::cv_status wait_for( std::unique_lock<std::mutex>& lock, const std::chrono::duration<Rep, Period>& rel_time); |
(1) | (dal C++11) |
template< class Rep, class Period, class Predicate > bool wait_for( std::unique_lock<std::mutex>& lock, const std::chrono::duration<Rep, Period>& rel_time, Predicate pred); |
(2) | (dal C++11) |
1)
Rilascia atomico
lock, blocca il thread corrente di esecuzione, e lo aggiunge alla lista di thread in attesa su *this. Il filo sarà sbloccato quando notify_all() o notify_one() viene eseguito, o quando il timeout rel_time relativa scadenza. Essa può anche essere sbloccato spurio. Quando sbloccato, indipendentemente dal motivo, lock è riacquisito ed esce wait_for(). Se questa funzione termina via eccezionale, lock anche riacquistata.Original:
Atomically releases
lock, blocks the current executing thread, and adds it to the list of threads waiting on *this. The thread will be unblocked when notify_all() or notify_one() is executed, or when the relative timeout rel_time expires. It may also be unblocked spuriously. When unblocked, regardless of the reason, lock is reacquired and wait_for() exits. If this function exits via exception, lock is also reacquired.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.
2)
Equivalente a
Original:
Equivalent to
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.
while (!pred()) if (wait_for(lock, rel_time) == std::cv_status::timeout) return pred(); return true;
Questo sovraccarico può essere utilizzato per ignorare risvegli spurie.
Original:
This overload may be used to ignore spurious awakenings.
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.
Parametri
| lock | - | un oggetto di
std::unique_lock<std::mutex> tipo, che deve essere bloccato dal thread correnteOriginal: an object of type std::unique_lock<std::mutex>, which must be locked by the current threadThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| rel_time | - | un oggetto di std::chrono::duration tipo che rappresenta il tempo massimo di attesa di spendere
Original: an object of type std::chrono::duration representing the maximum time to spend waiting The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| pred | - | predicate which returns false se l'attesa deve essere continuato |