GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::atomic::is_always_lock_free(3) C++ Standard Libary std::atomic::is_always_lock_free(3)

std::atomic::is_always_lock_free - std::atomic::is_always_lock_free


static constexpr bool is_always_lock_free = (since C++17)
/*implementation-defined*/;


Equals true if this atomic type is always lock-free and false if it is never or
sometimes lock-free.


The value of this constant is consistent with both the macro ATOMIC_xxx_LOCK_FREE,
where defined, with the member function is_lock_free and non-member function
std::atomic_is_lock_free.


There is no non-member function equivalent of this static member constant because
non-member functions take pointers to atomic types, and therefore aren't as useful
in constant expressions.


Feature-test macro: __cpp_lib_atomic_is_always_lock_free


is_lock_free checks if the atomic object is lock-free
(public member function)
atomic_is_lock_free checks if the atomic type's operations are lock-free
(C++11) (function template)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.