|
BDE 4.14.0 Production release
|
#include <bsls_atomic.h>
Public Member Functions | |
| AtomicBool () | |
Create an atomic boolean object having the default value false. | |
| AtomicBool (bool value) | |
Create an atomic boolean object having the specified value. | |
| ~AtomicBool ()=default | |
| AtomicBool & | operator= (bool value) |
| void | store (bool value) |
| void | storeRelaxed (bool value) |
| void | storeRelease (bool value) |
| bool | swap (bool swapValue) |
| bool | swapAcqRel (bool swapValue) |
| bool | testAndSwap (bool compareValue, bool swapValue) |
| bool | testAndSwapAcqRel (bool compareValue, bool swapValue) |
| operator bool () const | |
| Return the current value of this object. | |
| bool | load () const |
| Return the current value of this object. | |
| bool | loadRelaxed () const |
| bool | loadAcquire () const |
This class implements an atomic boolean, which supports common boolean operations in a way that is guaranteed to be atomic. Operations on objects of this class provide the sequential consistency memory ordering guarantee unless explicitly qualified with a less strict consistency guarantee suffix (i.e., Acquire, Release, AcqRel or Relaxed).
See bsls_atomic
|
inline |
|
inline |
|
default |
|
inline |
|
inline |
Return the current value of this object, providing the acquire memory ordering guarantee.
|
inline |
Return the current value of this object, providing the relaxed memory ordering guarantee.
|
inline |
|
inline |
Atomically assign the specified value to this object, and return a reference offering modifiable access to this object.
|
inline |
Atomically assign the specified value to this object, providing the sequential consistency memory ordering guarantee.
|
inline |
Atomically assign the specified value to this object, providing the relaxed memory ordering guarantee.
|
inline |
Atomically assign the specified value to this object, providing the release memory ordering guarantee.
|
inline |
Atomically set the value of this object to the specified swapValue and return its previous value.
|
inline |
Atomically set the value of this object to the specified swapValue and return its previous value, providing the acquire/release memory ordering guarantee.
|
inline |
Compare the value of this object to the specified compareValue. If they are equal, set the value of this atomic boolean to the specified swapValue, otherwise leave this value unchanged. Return the previous value of this atomic boolean, whether or not the swap occurred. Note that the entire test-and-swap operation is performed atomically.
|
inline |
Compare the value of this object to the specified compareValue. If they are equal, set the value of this atomic boolean to the specified swapValue, otherwise leave this value unchanged. Return the previous value of this atomic boolean, whether or not the swap occurred. Note that the entire test-and-swap operation is performed atomically and it provides the acquire/release memory ordering guarantee.