std::shared_lock<Mutex>:: mutex
From cppreference.net
<
cpp
|
thread
|
shared lock
C++
Concurrency support library
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::shared_lock
| Member functions | ||||
| Shared locking | ||||
| Modifiers | ||||
| Observers | ||||
|
shared_lock::mutex
|
||||
| Non-member functions | ||||
|
mutex_type
*
mutex
(
)
const
noexcept
;
|
(since C++14) | |
Returns a pointer to the associated mutex, or a null pointer if there is no associated mutex.
Parameters
(none)
Return value
Pointer to the associated mutex or a null pointer if there is no associated mutex.
Example
|
This section is incomplete
Reason: no example |