close
Espacios de nombres
Variantes

kill_dependency

De cppreference.com
< c | atomic
<tbody> </tbody>
Definido en el archivo de encabezado <stdatomic.h>
A kill_dependency(A y);
(desde C11)
Informa al compilador que el árbol de dependencia inició una operación memory_order_consume carga atómica no se extiende más allá del valor de retorno de kill_dependency, es decir, el argumento no lleva a una dependencia en el valor de retorno .
Original:
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 text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La función se implementa como una macro. A es el tipo de y .
Original:
The function is implemented as a macro. A is the type of y.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parámetros

y -
la expresión cuyo valor de retorno debe ser removido de un árbol de dependencias
Original:
the expression whose return value is to be removed from a dependency tree
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Valor de retorno

Devoluciones y, ya no es una parte de un árbol de dependencias .
Original:
Returns y, no longer a part of a dependency tree.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.