std::shared_timed_mutex::try_lock_shared_until (3) Linux Manual Page
std::shared_timed_mutex::try_lock_shared_until – std::shared_timed_mutex::try_lock_shared_until Synopsis template <class Clock, class Duration> (since C++ 14) bool try_lock_shared_until(const std::chrono::time_point<Clock, Duration> &timeout_time); Tries to lock the mutex in shared mode. Blocks until specified timeout_time has been reached or the lock is acquired, whichever comes first. On successful lock acquisition returns true, otherwise returns false. If timeout_time has already passed, this…
