atomic_fetch_and, atomic_fetch_and_explicit
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. |
Elemento definito nell'header <stdatomic.h>
|
||
C atomic_fetch_and( volatile A* obj, M arg ); |
(1) | |
C atomic_fetch_and_explicity( volatile A* obj, M arg, memory_order order ); |
(2) | |
Sostituisce atomico il valore puntato dal
obj
con il risultato di AND bit per bit tra il valore storico di obj
e arg
, e restituisce il valore obj
precedentemente detenuta. L'operazione è lettura-modifica-scrittura. La prima memoria versione ordini accessi secondo memory_order_seq_cst, la seconda memoria versione ordini accessi secondo order
.Original:
Atomically replaces the value pointed by
obj
with the result of bitwise AND between the old value of obj
and arg
, and returns the value obj
held previously. The operation is read-modify-write operation. The first version orders memory accesses according to memory_order_seq_cst, the second version orders memory accesses according to order
.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.
Questo è un funzione generica definita per ogni tipologia di oggetto atomici.
A
è il tipo di un oggetto atomico, M
può essere il non-atomica tipo corrispondente al A
se A
è atomico tipo intero, o se ptrdiff_t A
è di tipo puntatore atomica.Original:
This is a funzione generica defined for all atomic object types.
A
is the type of an atomic object, M
is either the non-atomic type corresponding to A
if A
is atomic integer type, or ptrdiff_t if A
is atomic pointer type.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.
[modifica] Parametri
obj | - | puntatore all'oggetto atomica da modificare
Original: pointer to the atomic object to modify The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
arg | - | il valore di bit AND al valore memorizzato nell'oggetto atomica
Original: the value to bitwise AND to the value stored in the atomic object The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
order | - | sycnhronization la memoria di ordinazione per questa operazione: tutti i valori sono consentiti
Original: the memory sycnhronization ordering for this operation: all values are permitted The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica] Valore di ritorno
Il valore tiene già essere oggetto atomico puntato da
obj
.Original:
The value held previously be the atomic object pointed to by
obj
.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.
[modifica] Vedi anche
atomico OR logico Original: atomic logical OR The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
atomico logico esclusivo Original: atomic logical exclusive OR The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (funzione) | |
C++ documentation for atomic_fetch_and, atomic_fetch_and_explicit
|