Espaces de noms
Variantes

Atomic operations library

De cppreference.com
< cpp
Version datée du 22 octobre 2012 à 00:00 par TranslationBot (discussion | contributions) (Translated from English version using Google Translate)
(diff) ← Version précédente | Version actuelle (diff) | Version suivante → (diff)

<metanoindex/>

 
 
Atomique opérations de la bibliothèque
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.
atomic (C++11)
atomic_is_lock_free (C++11)
Fonctions
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_store
atomic_store_explicit
(C++11)
(C++11)
atomic_load
atomic_load_explicit
(C++11)
(C++11)
atomic_exchange
atomic_exchange_explicit
(C++11)
(C++11)
atomic_compare_exchange_weak
atomic_compare_exchange_weak_explicit
atomic_compare_exchange_strong
atomic_compare_exchange_strong_explicit
(C++11)
(C++11)
(C++11)
(C++11)
atomic_fetch_add
atomic_fetch_add_explicit
(C++11)
(C++11)
atomic_fetch_sub
atomic_fetch_sub_explicit
(C++11)
(C++11)
atomic_fetch_and
atomic_fetch_and_explicit
(C++11)
(C++11)
atomic_fetch_or
atomic_fetch_or_explicit
(C++11)
(C++11)
atomic_fetch_xor
atomic_fetch_xor_explicit
(C++11)
(C++11)
Drapeaux atomiques
Original:
Atomic flags
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
atomic_flag (C++11)
atomic_flag_test_and_set
atomic_flag_test_and_set_explicit
(C++11)
(C++11)
atomic_flag_clear
atomic_flag_clear_explicit
(C++11)
(C++11)
Initialisation
Original:
Initialization
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
atomic_init (C++11)
ATOMIC_VAR_INIT (C++11)
ATOMIC_FLAG_INIT (C++11)
Mémoire de la commande
Original:
Memory ordering
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
memory_order (C++11)
kill_dependency (C++11)
atomic_thread_fence (C++11)
atomic_signal_fence (C++11)
 
La bibliothèque atomique fournit des composants à grains fins des opérations atomiques permettant la programmation concurrente lockless. Chaque opération atomique est indivisible à l'égard de toute autre opération atomique qui implique le même objet. Objets atomiques sont les seuls objets C + + libres des races de données; qui est, si un thread écrit dans un autre thread atomique tout en y lit, le comportement est bien défini .
Original:
The atomic library provides components for fine-grained atomic operations allowing for lockless concurrent programming. Each atomic operation is indivisible with regards to any other atomic operation that involves the same object. Atomic objects are the only C++ objects free of data races; that is, if one thread writes to an atomic while another thread reads from it, the behavior is well-defined.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Modèle:cpp/atomic/dcl list atomicModèle:cpp/atomic/dcl list atomic is lock freeModèle:cpp/atomic/dcl list atomic storeModèle:cpp/atomic/dcl list atomic loadModèle:cpp/atomic/dcl list atomic exchangeModèle:cpp/atomic/dcl list atomic compare exchangeModèle:cpp/atomic/dcl list atomic fetch addModèle:cpp/atomic/dcl list atomic fetch subModèle:cpp/atomic/dcl list atomic fetch andModèle:cpp/atomic/dcl list atomic fetch orModèle:cpp/atomic/dcl list atomic fetch xorModèle:cpp/atomic/dcl list atomic flagModèle:cpp/atomic/dcl list atomic flag test and setModèle:cpp/atomic/dcl list atomic flag clearModèle:cpp/atomic/dcl list atomic initModèle:cpp/atomic/dcl list ATOMIC VAR INITModèle:cpp/atomic/dcl list ATOMIC FLAG INITModèle:cpp/atomic/dcl list memory orderModèle:cpp/atomic/dcl list kill dependencyModèle:cpp/atomic/dcl list atomic thread fenceModèle:cpp/atomic/dcl list atomic signal fence
Defined in header <atomic>
Types atomiques
Original:
Atomic types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Les opérations sur les types atomiques
Original:
Operations on atomic types
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Type d'indicateur et des opérations
Original:
Flag type and operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Initialisation
Original:
Initialization
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La synchronisation de la mémoire de la commande
Original:
Memory synchronization ordering
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.