void lock(); | (since C++14) |
Locks the associated mutex in shared mode. Effectively calls mutex()->lock_shared().
(none).
(none).
mutex()->lock_shared() std::system_error with an error code of std::errc::operation_not_permitted shared_lock (that is, owns_lock returns true), std::system_error with an error code of std::errc::resource_deadlock_would_occur | tries to lock the associated mutex (public member function) |
|
| unlocks the associated mutex (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/thread/shared_lock/lock