std::unique_lock::try_lock_for
Da cppreference.com
< cpp | thread | unique lock
![]() |
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. |
template< class Rep, class Period > bool try_lock_for( const std::chrono::duration<Rep,Period>& timeout_duration ); |
(desde C++11) | |
Tenta bloquear o mutex associado. Blocos até
timeout_duration
especificado tiver decorrido ou o bloqueio é adquirido, o que ocorrer primeiro. No sucesso bloqueio true retornos de aquisição, caso contrário retorna false. Podem bloquear por mais de timeout_duration
.Original:
Tries to lock the associated mutex. Blocks until specified
timeout_duration
has elapsed or the lock is acquired, whichever comes first. On successful lock acquisition returns true, otherwise returns false. May block for longer than timeout_duration
.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.
Efetivamente chama mutex()->try_lock_for(timeout_duration)
Original:
Effectively calls mutex()->try_lock_for(timeout_duration)
The text has been machine-translated via