close
Namensräume
Varianten

atomic_exchange, atomic_exchange_explicit

Aus cppreference.com
< c | atomic

<metanoindex/>

 
 
Atomare Operationen Bibliothek
Types
Original:
Types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
memory_order
atomic_flag
Makros
Original:
Macros
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
ATOMIC_***_LOCK_FREE
ATOMIC_FLAG_INIT
ATOMIC_VAR_INIT
kill_dependency
Funktionen
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
atomic_flag_test_and_set
atomic_flag_clear
atomic_init
atomic_is_lock_free
atomic_store
atomic_load
atomic_exchange
atomic_compare_exchange
atomic_fetch_add
atomic_fetch_sub
atomic_fetch_or
atomic_fetch_xor
atomic_fetch_and
atomic_thread_fence
atomic_signal_fence
 
<tbody> </tbody>
definiert in Header <stdatomic.h>
C atomic_exchange( volatile A* obj, C desired );
(1)
C atomic_exchange_explicit( volatile A* obj, C desired, memory_order order );
(2)

Atomically replaces the value pointed by obj with desired 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.

Dies ist ein für alle atomaren generische Funktion Objekttypen definiert. A ist der Typ eines atomaren Objekt, ist das nicht-C Atomtyp entsprechend A .
Original:
This is a generische Funktion defined for all atomic object types. A is the type of an atomic object, C is the non-atomic type corresponding to A.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parameter

obj -
Zeiger auf den atomaren Objekts zu ändern
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.
desired - the value to replace the atomic object with
order -
der Speicher-Synchronisation Bestellung für diesen Vorgang: Alle Werte sind zulässig
Original:
the memory synchronization 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.

Rückgabewert

Der Wert gehalten zuvor die atomare Objekt, auf das obj sein .
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.

Siehe auch

Swaps ein Wert mit dem atomaren Objekt, wenn der alte Wert ist das, was erwartet wird, sonst liest den alten Wert
Original:
swaps a value with the an atomic object if the old value is what is expected, otherwise reads the old value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(Funktion) [edit]
C++ documentation for atomic_exchange, atomic_exchange_explicit