kill_dependency
De cppreference.com
![]() |
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
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.
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.
You can help to correct and verify the translation. Click here for instructions.
[editar] 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. |
[editar] 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.
You can help to correct and verify the translation. Click here for instructions.