Defined in header <stdatomic.h> | ||
---|---|---|
_Bool atomic_is_lock_free( const volatile A* obj ); | (since C11) |
Determines if the atomic operations on all objects of the type A
(the type of the object pointed to by obj
) are lock-free. In any given program execution, the result of calling atomic_is_lock_free
is the same for all pointers of the same type.
This is a generic function defined for all atomic object types A
. The argument is pointer to a volatile atomic type to accept addresses of both non-volatile and volatile (e.g. memory-mapped I/O) atomic variables.
obj | - | pointer to the atomic object to inspect |
true
if the the operations on all objects of the type A
are lock-free, false
otherwise.
C11, as published, specified that this function is per-object, not per-type. This was corrected by DR 465.
#include <stdio.h> #include <stdatomic.h> _Atomic struct A { int a[100]; } a; _Atomic struct B { int x, y; } b; int main(void) { printf("_Atomic struct A is lock free? %s\n", atomic_is_lock_free(&a) ? "true" : "false"); printf("_Atomic struct B is lock free? %s\n", atomic_is_lock_free(&b) ? "true" : "false"); }
Possible output:
_Atomic struct A is lock free? false _Atomic struct B is lock free? true
(C11) | indicates that the given atomic type is lock-free (macro constant) |
C++ documentation for atomic_is_lock_free |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/c/atomic/atomic_is_lock_free