kill_dependency
Da cppreference.com.
|
|
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
<metanoindex/>
<tbody> </tbody>| Elemento definito nell'header <stdatomic.h>
|
||
A kill_dependency(A y); |
(dal C11) | |
Informa il compilatore che l'albero delle dipendenze avviato da un'operazione atomica carico
memory_order_consume non si estenda oltre il valore di ritorno di kill_dependency, vale a dire, l'argomento non porta una dipendenza nel valore di ritorno.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 funzione è implementata come una macro.
A è il tipo di 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.
Parametri
| y | - | l'espressione il cui valore di ritorno deve essere rimosso da un albero delle dipendenze
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. |
Valore di ritorno
Restituisce
y, non è più una parte di un albero delle dipendenze.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.