std::kill_dependency

From Cppreference

Jump to: navigation, search
Defined in header <atomic>

template< class T >
T kill_dependency( T y );

Informs the compiler that the dependency tree started by an std::memory_order_consume atomic load operation does not extend past the return value of std::kill_dependency; that is, the argument does not carry a dependency into the return value.

Contents

[edit] Parameters

y - The expression whose return value is to be removed from a dependency tree

[edit] Return value

Returns y, no longer a part of a dependency tree.

[edit] Exceptions

noexcept specification:  
noexcept

  (C++11 feature)

[edit] Examples

[edit] See also

memory_order (C++11)
defines memory ordering constraints for the given atomic operation
(typedef)