A simple wrapper around std::atomic. More...
#include <juce_Atomic.h>
Public Types | |
using | DiffType = typename AtomicHelpers::DiffTypeHelper< Type >::Type |
Public Member Functions | |
Atomic () noexcept | |
Creates a new value, initialised to zero. More... | |
Atomic (const Atomic &other) noexcept | |
Copies another value (atomically). More... | |
Atomic (Type initialValue) noexcept | |
Creates a new value, with a given initial value. More... | |
~Atomic () noexcept | |
Destructor. More... | |
bool | compareAndSetBool (Type newValue, Type valueToCompare) noexcept |
Atomically compares this value with a target value, and if it is equal, sets this to be equal to a new value. More... | |
Type | exchange (Type newValue) noexcept |
Atomically sets the current value, returning the value that was replaced. More... | |
Type | get () const noexcept |
Atomically reads and returns the current value. More... | |
void | memoryBarrier () noexcept |
Implements a memory read/write barrier. More... | |
Type | operator++ () noexcept |
Atomically increments this value, returning the new value. More... | |
Type | operator+= (DiffType amountToAdd) noexcept |
Atomically adds a number to this value, returning the new value. More... | |
Type | operator-- () noexcept |
Atomically decrements this value, returning the new value. More... | |
Type | operator-= (DiffType amountToSubtract) noexcept |
Atomically subtracts a number from this value, returning the new value. More... | |
Atomic< Type > & | operator= (const Atomic &other) noexcept |
Copies another value into this one (atomically). More... | |
Atomic< Type > & | operator= (Type newValue) noexcept |
Copies another value into this one (atomically). More... | |
void | set (Type newValue) noexcept |
Atomically sets the current value. More... | |
Public Attributes | |
std::atomic< Type > | value |
The std::atomic object that this class operates on. More... | |
A simple wrapper around std::atomic.
@tags{Core}
using juce::Atomic< Type >::DiffType = typename AtomicHelpers::DiffTypeHelper<Type>::Type |
|
inlinenoexcept |
Creates a new value, initialised to zero.
|
inlinenoexcept |
Creates a new value, with a given initial value.
|
inlinenoexcept |
Copies another value (atomically).
|
inlinenoexcept |
Destructor.
|
inlinenoexcept |
Atomically compares this value with a target value, and if it is equal, sets this to be equal to a new value.
This operation is the atomic equivalent of doing this:
Internally, this method calls std::atomic::compare_exchange_strong with memory_order_seq_cst (the strictest std::memory_order).
Referenced by juce::ThreadLocalValue< Type >::get().
|
inlinenoexcept |
Atomically sets the current value, returning the value that was replaced.
|
inlinenoexcept |
Atomically reads and returns the current value.
Referenced by juce::ThreadLocalValue< Type >::get(), juce::RenderingHelpers::GlyphCache< CachedGlyphType, RenderTargetType >::getGlyphForReuse(), juce::Thread::killThread(), and juce::Thread::launchThread().
|
inlinenoexcept |
Implements a memory read/write barrier.
Internally this calls std::atomic_thread_fence with memory_order_seq_cst (the strictest std::memory_order).
|
inlinenoexcept |
Atomically increments this value, returning the new value.
|
inlinenoexcept |
Atomically adds a number to this value, returning the new value.
|
inlinenoexcept |
Atomically decrements this value, returning the new value.
|
inlinenoexcept |
Atomically subtracts a number from this value, returning the new value.
|
inlinenoexcept |
Copies another value into this one (atomically).
|
inlinenoexcept |
Copies another value into this one (atomically).
|
inlinenoexcept |
Atomically sets the current value.
std::atomic<Type> juce::Atomic< Type >::value |
The std::atomic object that this class operates on.
Referenced by juce::Atomic< Thread::ThreadID >::compareAndSetBool(), juce::Atomic< Thread::ThreadID >::exchange(), juce::Atomic< Thread::ThreadID >::get(), juce::Atomic< Thread::ThreadID >::operator++(), juce::Atomic< Thread::ThreadID >::operator+=(), juce::Atomic< Thread::ThreadID >::operator--(), juce::Atomic< Thread::ThreadID >::operator-=(), juce::Atomic< Thread::ThreadID >::operator=(), juce::Atomic< Thread::ThreadID >::set(), and juce::LeakedObjectDetector< OwnerClass >::LeakCounter::~LeakCounter().