Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

std::__atomic2::atomic_bool(3cxx) [debian man page]

__atomic2::atomic_bool(3cxx)											      __atomic2::atomic_bool(3cxx)

NAME
__atomic2::atomic_bool - SYNOPSIS
Public Member Functions atomic_bool (const atomic_bool &) atomic_bool (bool __i) bool compare_exchange_strong (bool &__i1, bool __i2, memory_order __m1, memory_order __m2) volatile bool compare_exchange_strong (bool &__i1, bool __i2, memory_order __m=memory_order_seq_cst) volatile bool compare_exchange_weak (bool &__i1, bool __i2, memory_order __m1, memory_order __m2) volatile bool compare_exchange_weak (bool &__i1, bool __i2, memory_order __m=memory_order_seq_cst) volatile bool exchange (bool __i, memory_order __m=memory_order_seq_cst) volatile bool is_lock_free () const volatile bool load (memory_order __m=memory_order_seq_cst) const volatile operator bool () const volatile atomic_bool & operator= (const atomic_bool &) bool operator= (bool __i) void store (bool __i, memory_order __m=memory_order_seq_cst) volatile Detailed Description atomic_bool Definition at line 393 of file atomic_2.h. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Thu Aug 2 2012 __atomic2::atomic_bool(3cxx)

Check Out this Related Man Page

std::__atomic0::__atomic_base< _ITp >(3cxx)							       std::__atomic0::__atomic_base< _ITp >(3cxx)

NAME
std::__atomic0::__atomic_base< _ITp > - SYNOPSIS
Public Member Functions __atomic_base (const __atomic_base &) constexpr __atomic_base (__int_type __i) bool compare_exchange_strong (__int_type &__i1, __int_type __i2, memory_order __m1, memory_order __m2) bool compare_exchange_strong (__int_type &__i1, __int_type __i2, memory_order __m1, memory_order __m2) volatile bool compare_exchange_strong (__int_type &__i1, __int_type __i2, memory_order __m=memory_order_seq_cst) bool compare_exchange_strong (__int_type &__i1, __int_type __i2, memory_order __m=memory_order_seq_cst) volatile bool compare_exchange_weak (__int_type &__i1, __int_type __i2, memory_order __m1, memory_order __m2) bool compare_exchange_weak (__int_type &__i1, __int_type __i2, memory_order __m1, memory_order __m2) volatile bool compare_exchange_weak (__int_type &__i1, __int_type __i2, memory_order __m=memory_order_seq_cst) bool compare_exchange_weak (__int_type &__i1, __int_type __i2, memory_order __m=memory_order_seq_cst) volatile __int_type exchange (__int_type __i, memory_order __m=memory_order_seq_cst) __int_type exchange (__int_type __i, memory_order __m=memory_order_seq_cst) volatile __int_type fetch_add (__int_type __i, memory_order __m=memory_order_seq_cst) __int_type fetch_add (__int_type __i, memory_order __m=memory_order_seq_cst) volatile __int_type fetch_and (__int_type __i, memory_order __m=memory_order_seq_cst) __int_type fetch_and (__int_type __i, memory_order __m=memory_order_seq_cst) volatile __int_type fetch_or (__int_type __i, memory_order __m=memory_order_seq_cst) __int_type fetch_or (__int_type __i, memory_order __m=memory_order_seq_cst) volatile __int_type fetch_sub (__int_type __i, memory_order __m=memory_order_seq_cst) __int_type fetch_sub (__int_type __i, memory_order __m=memory_order_seq_cst) volatile __int_type fetch_xor (__int_type __i, memory_order __m=memory_order_seq_cst) __int_type fetch_xor (__int_type __i, memory_order __m=memory_order_seq_cst) volatile bool is_lock_free () const bool is_lock_free () const volatile __int_type load (memory_order __m=memory_order_seq_cst) const __int_type load (memory_order __m=memory_order_seq_cst) const volatile operator __int_type () const operator __int_type () const volatile __int_type operator&= (__int_type __i) __int_type operator&= (__int_type __i) volatile __int_type operator++ (int) __int_type operator++ (int) volatile __int_type operator++ () __int_type operator++ () volatile __int_type operator+= (__int_type __i) __int_type operator+= (__int_type __i) volatile __int_type operator-- (int) __int_type operator-- (int) volatile __int_type operator-- () __int_type operator-- () volatile __int_type operator-= (__int_type __i) __int_type operator-= (__int_type __i) volatile __atomic_base & operator= (const __atomic_base &) __atomic_base & operator= (const __atomic_base &) volatile __int_type operator= (__int_type __i) __int_type operator= (__int_type __i) volatile __int_type operator^= (__int_type __i) __int_type operator^= (__int_type __i) volatile __int_type operator|= (__int_type __i) __int_type operator|= (__int_type __i) volatile void store (__int_type __i, memory_order __m=memory_order_seq_cst) void store (__int_type __i, memory_order __m=memory_order_seq_cst) volatile Detailed Description template<typename _ITp>struct std::__atomic0::__atomic_base< _ITp > Base class for atomic integrals. Definition at line 161 of file atomic_0.h. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::__atomic0::__atomic_base< _ITp >(3cxx)
Man Page