Libreria atomica C ++ - scambio

Descrizione

Sostituisce automaticamente il valore dell'oggetto atomico con un argomento non atomico e restituisce il vecchio valore dell'atomico.

Dichiarazione

Di seguito è riportata la dichiarazione per std :: atomic_exchange.

template< class T >
T atomic_exchange( std::atomic<T>* obj, T desr );

C ++ 11

template< class T >
T atomic_exchange( volatile std::atomic<T>* obj, T desr );

Parametri

  • obj - Viene utilizzato nel puntatore all'oggetto atomico da modificare.

  • desr - Viene utilizzato per memorizzare il valore nell'oggetto atomico.

  • order - Viene utilizzato per sincronizzare l'ordine della memoria per questa operazione.

Valore di ritorno

Restituisce il valore tenuto in precedenza dall'oggetto atomico puntato da obj.

Eccezioni

No-noexcept - questa funzione membro non genera mai eccezioni.

Esempio

Nell'esempio seguente per std :: atomic_exchange.

#include <thread>
#include <vector>
#include <iostream>
#include <atomic>

std::atomic<bool> lock(false);

void f(int n) {
   for (int cnt = 0; cnt < 100; ++cnt) {
      while(std::atomic_exchange_explicit(&lock, true, std::memory_order_acquire))
             ;
        std::cout << "Output from thread " << n << '\n';
        std::atomic_store_explicit(&lock, false, std::memory_order_release);
   }
}
int main() {
   std::vector<std::thread> v;
   for (int n = 0; n < 10; ++n) {
      v.emplace_back(f, n);
   }
   for (auto& t : v) {
      t.join();
   }
}

L'output dovrebbe essere così -

Output from thread 0
Output from thread 1
Output from thread 0
Output from thread 1
Output from thread 0
Output from thread 1
Output from thread 0
Output from thread 1
.....................