mergearray.impl.header

Undocumented in source.

Members

Aliases

my_cas
alias my_cas = cas

Uninstrumented compare-and-swap.

tid
alias tid = thisTid

Unique thread identifier of type std.concurrency.Tid.

Functions

my_cas
bool my_cas(L* loc, E expected, V value)

Instrumented compare-and-swap to record usage statistics for debugging or performance measurements.

resetCasStats
void resetCasStats()

Resets instrumented compare-and-swap statistics to zero.

resetLockStats
void resetLockStats()

Instrumentation variables to record usage statistics of SMutex and TasMutex for debugging or performance measurements.

Structs

CoarseLocked
struct CoarseLocked(T)

Shared, coarsely-locked wrapper of an unshared T.

SMutex
struct SMutex

Scoped wrapper for a shared(core.sync.mutex.Mutex).

TasMutex
struct TasMutex

Scoped lock wrapping an atomic bool.

Variables

lockTotal
size_t lockTotal;

Instrumentation variables to record usage statistics of SMutex and TasMutex for debugging or performance measurements.

numFailedCAS
size_t numFailedCAS;

Instrumented compare-and-swap to record usage statistics for debugging or performance measurements.

numSuccessfulCAS
size_t numSuccessfulCAS;

Instrumented compare-and-swap to record usage statistics for debugging or performance measurements.

tid
size_t tid;

Unique thread identifier of type size_t.

tidCount
size_t tidCount;

Unique thread identifier of type size_t.

tryLockFails
size_t tryLockFails;
tryLockSuccess
size_t tryLockSuccess;

Instrumentation variables to record usage statistics of SMutex and TasMutex for debugging or performance measurements.

Meta