just::thread
std::atomic_address::operator+=
Atomically add the supplied value to the value stored in *this and return the new value.
*this
void* operator+=(ptrdiff_t i) volatile;
(void*)((char*)this->fetch_add(i,std::memory_order_seq_cst) + i).
(void*)((char*)this->fetch_add(i,std::memory_order_seq_cst) + i)
Nothing.
#include <atomic>
std::atomic_address
fetch_add
std::memory_order
Design and Content © Copyright 2008-2012 Just Software Solutions Ltd. All Rights Reserved.