Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

std::unique_lock(3) [centos man page]

std::unique_lock< _Mutex >(3)				     Library Functions Manual				     std::unique_lock< _Mutex >(3)

NAME
std::unique_lock< _Mutex > - SYNOPSIS
Public Types typedef _Mutex mutex_type Public Member Functions unique_lock (mutex_type &__m) unique_lock (mutex_type &__m, defer_lock_t) noexcept unique_lock (mutex_type &__m, try_to_lock_t) unique_lock (mutex_type &__m, adopt_lock_t) template<typename _Clock , typename _Duration > unique_lock (mutex_type &__m, const chrono::time_point< _Clock, _Duration > &__atime) template<typename _Rep , typename _Period > unique_lock (mutex_type &__m, const chrono::duration< _Rep, _Period > &__rtime) unique_lock (const unique_lock &)=delete unique_lock (unique_lock &&__u) noexcept void lock () mutex_type * mutex () const noexcept operator bool () const noexcept unique_lock & operator= (const unique_lock &)=delete unique_lock & operator= (unique_lock &&__u) noexcept bool owns_lock () const noexcept mutex_type * release () noexcept void swap (unique_lock &__u) noexcept bool try_lock () template<typename _Rep , typename _Period > bool try_lock_for (const chrono::duration< _Rep, _Period > &__rtime) template<typename _Clock , typename _Duration > bool try_lock_until (const chrono::time_point< _Clock, _Duration > &__atime) void unlock () Detailed Description template<typename _Mutex>class std::unique_lock< _Mutex > unique_lock Definition at line 431 of file mutex. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 std::unique_lock< _Mutex >(3)

Check Out this Related Man Page

std::__future_base::_State_base(3cxx)									     std::__future_base::_State_base(3cxx)

NAME
std::__future_base::_State_base - SYNOPSIS
Inherited by std::__future_base::_Async_state< _Res >, std::__future_base::_Deferred_state< _Res >, and std::__future_base::_Task_state< _Res(_Args...)>. Public Member Functions _State_base (const _State_base &) void _M_break_promise (_Ptr_type __res) void _M_set_result (function< _Ptr_type()> __res, bool __ignore_failure=false) void _M_set_retrieved_flag () _State_base & operator= (const _State_base &) _Result_base & wait () template<typename _Rep , typename _Period > bool wait_for (const chrono::duration< _Rep, _Period > &__rel) template<typename _Clock , typename _Duration > bool wait_until (const chrono::time_point< _Clock, _Duration > &__abs) Static Public Member Functions template<typename _Res , typename _Arg > static _Setter< _Res, _Arg && > __setter (promise< _Res > *__prom, _Arg &&__arg) template<typename _Res > static _Setter< _Res, __exception_ptr_tag > __setter (exception_ptr &__ex, promise< _Res > *__prom)" static _Setter< void, void > __setter (promise< void > *__prom) template<typename _Tp > static bool _S_check (const shared_ptr< _Tp > &__p) Detailed Description Base class for state between a promise and one or more associated futures. Definition at line 286 of file future. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::__future_base::_State_base(3cxx)
Man Page