std::atomic_fetch_sub,std::atomic_fetch_sub_explicit (3) - Linux Manuals
std::atomic_fetch_sub,std::atomic_fetch_sub_explicit: std::atomic_fetch_sub,std::atomic_fetch_sub_explicit
NAME
std::atomic_fetch_sub,std::atomic_fetch_sub_explicit - std::atomic_fetch_sub,std::atomic_fetch_sub_explicit
Synopsis
Defined in header <atomic>
template< class T >
T atomic_fetch_sub( std::atomic<T>* obj,
typename std::atomic<T>::difference_type arg ) noexcept;
template< class T >
T atomic_fetch_sub( volatile std::atomic<T>* obj,
typename std::atomic<T>::difference_type arg ) noexcept;
template< class T > (1)
T atomic_fetch_sub_explicit( std::atomic<T>* obj,
typename std::atomic<T>::difference_type arg,
std::memory_order order ) noexcept; (2)
template< class T >
T atomic_fetch_sub_explicit( volatile std::atomic<T>* obj,
typename std::atomic<T>::difference_type arg,
std::memory_order order ) noexcept;
Performs atomic subtraction. Atomically subtracts arg from the value pointed to by obj and returns the value obj held previously. The operation is performed as if the following was executed:
1) obj->fetch_sub(arg)
2) obj->fetch_sub(arg, order)
Parameters
obj - pointer to the atomic object to modify
arg - the value to subtract from the value stored in the atomic object
order - the memory sycnhronization ordering for this operation: all values are permitted.
Return value
The value immediately preceding the effects of this function in the modification_order of *obj.
Possible implementation
Example
Multiple threads may use fetch_sub to concurrently process an indexed container
// Run this code
Output:
Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR Applied to Behavior as published Correct behavior
P0558R1 C++11 exact type match required because T is deduced from multiple arguments T is deduced from the atomic argument only
See also
fetch_sub (public member function of std::atomic<T>)
atomic_fetch_add
atomic_fetch_add_explicit adds a non-atomic value to an atomic object and obtains the previous value of the atomic