Default implementations of non‐essential 64‐bit pointer atomic operations.

Synopsis

Declared in <bsls_atomicoperations_default.h>

template<class IMP>
struct AtomicOperations_DefaultPointer64;

Description

This class provides default implementations of non‐essential atomic operations for the 64‐bit pointer type independent on any specific platform. It also provides prototypes for the atomic operations for the pointer type that have to be implemented separately for each specific platform. These platform‐independent and platform‐specific atomic operations combined together form a full set of atomic operations for the pointer type.

Note that AtomicOperations_DefaultPointer64 is implemented in terms of the following atomic operations on the Int64 type that must be provided by the IMP template parameter. ` static Types::Int64 getInt64( typename AtomicTypes::Int64 const *atomicInt); static Types::Int64 getInt64Relaxed( typename AtomicTypes::Int64 const *atomicInt); static Types::Int64 getInt64Acquire( typename AtomicTypes::Int64 const *atomicInt); static void setInt64(typename AtomicTypes::Int64 *atomicInt, Types::Int64 value); static void setInt64Relaxed(typename AtomicTypes::Int64 *atomicInt, Types::Int64 value); static void setInt64Release(typename AtomicTypes::Int64 *atomicInt, Types::Int64 value); static Types::Int64 swapInt64(typename AtomicTypes::Int64 *atomicInt, Types::Int64 swapValue); static Types::Int64 swapInt64AcqRel( typename AtomicTypes::Int64 *atomicInt, Types::Int64 swapValue); static Types::Int64 testAndSwapInt64( typename AtomicTypes::Int64 *atomicInt, Types::Int64 compareValue, Types::Int64 swapValue); static Types::Int64 testAndSwapInt64AcqRel( typename AtomicTypes::Int64 *atomicInt, Types::Int64 compareValue, Types::Int64 swapValue); `

Type Aliases

Name

Description

AtomicTypes

This typedef is an alias to Atomic_TypeTraits<IMP>.

Static Member Functions

Name

Description

getPtr

Atomically retrieve the value of the specified atomicPtr, providing the sequential consistency memory ordering guarantee.

getPtrAcquire

Atomically retrieve the value of the specified atomicPtr, providing the acquire memory ordering guarantee.

getPtrRelaxed

Atomically retrieve the value of the specified atomicPtr, without providing any memory ordering guarantees.

initPointer

Initialize the specified atomicPtr and set its value to the optionally specified initialValue.

setPtr

Atomically set the value of the specified atomicPtr to the specified value, providing the sequential consistency memory ordering guarantee.

setPtrRelaxed

Atomically set the value of the specified atomicPtr to the specified value, without providing any memory ordering guarantees.

setPtrRelease

Atomically set the value of the specified atomicPtr to the specified value, providing the release memory ordering guarantee.

swapPtr

Atomically swap atomicPtr and return its previous value.

swapPtrAcqRel

Atomically swap atomicPtr with acquire/release ordering.

testAndSwapPtr

Conditionally swap atomicPtr if it equals compareValue.

testAndSwapPtrAcqRel

Conditionally swap atomicPtr with acquire/release ordering.

Derived Classes

Name

Description

AtomicOperations_Default64

Default atomic operations for a generic 64‐bit platform.

Created with MrDocs