logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

std::recursive_timed_mutex

Author

       Generated automatically by Doxygen for libstdc++ from the source code.

                                                    libstdc++                   std::recursive_timed_mutex(3cxx)

Detailed Description

       The standard recursive timed mutex type.

       A recursive mutex that supports a timeout when trying to acquire the lock. A recursive mutex can be
       locked more than once by the same thread. Other threads cannot lock the mutex until the owning thread
       unlocks it as many times as it was locked.

       Since
           C++11

Name

       std::recursive_timed_mutex

Synopsis

       #include <mutex>

       Inherits __recursive_mutex_base, and __timed_mutex_impl< recursive_timed_mutex >.

   PublicTypestypedef__native_type * native_handle_typePublicMemberFunctionsrecursive_timed_mutex (const recursive_timed_mutex &)=deletevoidlock ()
       native_handle_typenative_handle () noexcept
       recursive_timed_mutex & operator= (const recursive_timed_mutex &)=delete
       bool try_lock () noexcept
       template<class _Rep , class_Period > bool try_lock_for (const chrono::duration< _Rep, _Period >
           &__rtime)
       template<class_Clock , class_Duration > bool try_lock_until (const chrono::time_point< _Clock,
           _Duration > &__atime)
       voidunlock ()

   Friendsclass__timed_mutex_impl<recursive_timed_mutex>

See Also