Defined in header <stdatomic.h> | ||
---|---|---|
A kill_dependency(A y); | (since C11) |
Informs the compiler that the dependency tree started by an memory_order_consume
atomic load operation does not extend past the return value of kill_dependency
; that is, the argument does not carry a dependency into the return value.
The function is implemented as a macro. A
is the type of y
.
y | - | the expression whose return value is to be removed from a dependency tree |
Returns y
, no longer a part of a dependency tree.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/c/atomic/kill_dependency