std::unique_lock::try_lock
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. |
<metanoindex/>
<tbody> </tbody> bool try_lock(); |
(desde C++11) | |
Tenta bloquear o mutex associado sem bloqueio. Efetivamente chama
mutex()->try_lock().Original:
Tries to lock the associated mutex without blocking. Effectively calls
mutex()->try_lock().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::system_error é lançada se não houver mutex associado, ou se o mutex já está trancada.
Original:
std::system_error is thrown if there is no associated mutex or if the mutex is already locked.
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.
Parâmetros
(Nenhum)
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.
Valor de retorno
true se a propriedade do mutex foi adquirido com sucesso, caso contrário false.Original:
true if the ownership of the mutex has been acquired successfully, false otherwise.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.
Exceções
- Todas as exceções lançadas por
mutex()->try_lock()Original:Any exceptions thrown bymutex()->try_lock()The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- Se não houver um mutex associado, std::system_error com um código de erro de std::errc::operation_not_permittedOriginal:If there is no associated mutex, std::system_error with an error code of std::errc::operation_not_permittedThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- Se o mutex já está bloqueado std::system_error, com um código de erro de std::errc::resource_deadlock_would_occurOriginal:If the mutex is already locked, std::system_error with an error code of std::errc::resource_deadlock_would_occurThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |
Veja também
| locks the associated mutex (função pública membro) | |