std::unique_lock::release
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> mutex_type* release(); |
(seit C++11) | |
Bricht die Verbindung der zugehörigen Mutex, wenn überhaupt, und
*this . Original:
Breaks the association of the associated mutex, if any, and
*this. 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.
Es werden keine Sperren entriegelt. Wenn die
*this statt Besitz des zugehörigen mutex vor dem Anruf, wird der Anrufer nun verantwortlich, um den Mutex entsperren .Original:
No locks are unlocked. If the
*this held ownership of the associated mutex prior to the call, the caller is now responsible to unlock the mutex.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.
Parameter
(None)
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.
Rückgabewert
Zeiger auf den zugehörigen Mutex oder NULL wenn es keinen zugehörigen Mutex .
Original:
Pointer to the associated mutex or NULL if there was no associated mutex.
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.
Ausnahmen
Beispiel
| This section is incomplete Reason: no example |
