std::timed_mutex::unlock (3) - Linux Manuals
std::timed_mutex::unlock: std::timed_mutex::unlock
Command to display std::timed_mutex::unlock
manual in Linux: $ man 3 std::timed_mutex::unlock
NAME
std::timed_mutex::unlock - std::timed_mutex::unlock
Synopsis
void unlock(); (since C++11)
Unlocks the mutex.
The mutex must be locked by the current thread of execution, otherwise, the behavior is undefined.
This operation synchronizes-with (as defined in std::memory_order) any subsequent lock operation that obtains ownership of the same mutex.
Parameters
(none)
Return value
(none)
Exceptions
(none)
Notes
unlock() is usually not called directly: std::unique_lock and std::lock_guard are used to manage exclusive locking.
Example
This section is incomplete
Reason: no example
See also
locks the mutex, blocks if the mutex is not available
lock (public member function)
tries to lock the mutex, returns if the mutex is not available
try_lock (public member function)
tries to lock the mutex, returns if the mutex has been
try_lock_for unavailable for the specified timeout duration
(public member function)
tries to lock the mutex, returns if the mutex has been
try_lock_until unavailable until specified time point has been reached
(public member function)
Pages related to std::timed_mutex::unlock
- std::timed_mutex::lock (3) - std::timed_mutex::lock
- std::timed_mutex::native_handle (3) - std::timed_mutex::native_handle
- std::timed_mutex::timed_mutex (3) - std::timed_mutex::timed_mutex
- std::timed_mutex::try_lock (3) - std::timed_mutex::try_lock
- std::timed_mutex::try_lock_for (3) - std::timed_mutex::try_lock_for
- std::timed_mutex::try_lock_until (3) - std::timed_mutex::try_lock_until
- std::timed_mutex::~timed_mutex (3) - std::timed_mutex::~timed_mutex
- std::timed_mutex (3) - std::timed_mutex
- std::time (3) - std::time
- std::time_base (3) - std::time_base
- std::time_get (3) - std::time_get
- std::time_get<CharT,InputIt>::date_order,std::time_get<CharT,InputIt>::do_date_order (3) - std::time_get<CharT,InputIt>::date_order,std::time_get<CharT,InputIt>::do_date_order
- std::time_get<CharT,InputIt>::get,std::time_get<CharT,InputIt>::do_get (3) - std::time_get<CharT,InputIt>::get,std::time_get<CharT,InputIt>::do_get