std::shared_timed_mutex::lock (3) Linux Manual Page
std::shared_timed_mutex::lock – std::shared_timed_mutex::lock Synopsis void lock(); (since C++ 14) Locks the mutex. If another thread has already locked the mutex, a call to lock will block execution until the lock is acquired. If lock is called by a thread that already owns the mutex in any mode (shared or exclusive), the behavior is undefined. Prior…
