std::{{{1}}}::try_lock
From cppreference.com
bool try_lock(); |
(since {std}) | |
Tries to lock the mutex. Returns immediately. On successful lock acquisition returns true, otherwise returns false.
This function is allowed to fail spuriously and return false even if the mutex is not currently locked by any other thread.
Templated information. See page source. |
Prior unlock() operation on the same mutex synchronizes-with (as defined in std::memory_order) this operation if it returns true. Note that prior lock() does not synchronize with this operation if it returns false.
Contents |
[edit] Parameters
(none)
[edit] Return value
true if the lock was acquired successfully, otherwise false.
[edit] Exceptions
Throws nothing.
[edit] Example
Templated content. The link is cpp/thread/<PP>/example_try_lock |
[edit] See also
locks the mutex, blocks if the mutex is not available (public member function of std::{{{1}}} )
| |
unlocks the mutex (public member function of std::{{{1}}} )
| |
C documentation for mtx_trylock
|