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(); |
(depuis C++11) | |
Essaie de verrouiller le mutex associé sans blocage. Appelle effectivement
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 est levée si il n'ya pas de mutex associé ou si le mutex est déjà verrouillé .
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.
Paramètres
(Aucun)
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.
Retourne la valeur
true si la propriété du mutex a été acquis avec succès, false autrement .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.
Exceptions
- Toutes les exceptions levées par
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.
- S'il n'y a pas associé mutex, std::system_error avec un code d'erreur 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.
- Si le mutex est déjà verrouillé, std::system_error avec un code d'erreur 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.
Exemple
| This section is incomplete Reason: no example |
Voir aussi
| locks the associated mutex (fonction membre publique) | |
tente de verrouiller le mutex associé TimedLockable, les retours si le mutex a été indisponible pendant la durée de temps spécifiéeOriginal: attempts to lock the associated TimedLockable mutex, returns if the mutex has been unavailable for the specified time durationThe text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction membre publique) | |
essaye de verrouiller le mutex associé TimedLockable, les retours si le mutex est indisponible jusqu'à ce que spécifiée point de temps a été atteinte Original: tries to lock the associated TimedLockable mutex, returns if the mutex has been unavailable 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. (fonction membre publique) | |
déverrouille le mutex associé Original: unlocks the associated mutex The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (fonction membre publique) | |