Share via


recursive_timed_mutex::try_lock_for Method

Attempts to obtain ownership of the mutex without blocking.

template<class Rep, class Period>
   bool try_lock_for(const chrono::duration<Rep, Period>& Rel_time);

Parameters

  • Rel_time
    A chrono::duration object that specifies the maximum amount of time that the method attempts to obtain ownership of the mutex.

Return Value

true if the method successfully obtains ownership of the mutex or if the calling thread already owns the mutex; otherwise, false.

Remarks

If the calling thread already owns the mutex, the method immediately returns true, and the previous lock remains in effect.

Requirements

Header: mutex

Namespace: std

See Also

Reference

<mutex>

recursive_timed_mutex Class

Other Resources

C++ Standard Library Header Files