InterlockedDecrement16

InterlockedDecrement16 decrements (decreases by one) the value of the specified 16-bit variable as an atomic operation.

To operate on 32-bit values, use the InterlockedDecrement function.

To operate on 64-bit values, use the InterlockedDecrement64 function.

Syntax

Copy
short InterlockedDecrement16(
    [in, out]    short volatile *Addend
);

Parameters

[in, out] Addend

A pointer to the variable to be decreased.

Return Value

The function returns the resulting decremented value.

Remarks

The variable pointed to by the Addend parameter must be aligned on a 16-bit boundary; otherwise, this function will behave unpredictably on multiprocessor x86 systems and any non-x86 systems.

The interlocked functions provide a simple mechanism for synchronizing access to a variable shared by multiple threads. This function is atomic concerning calls to other interlocked functions.

This function is implemented using a compiler intrinsic where possible. For more information, see the winbase.h header file and _InterlockedDecrement16.

This function generates a full memory barrier (or fence) to ensure that memory operations are completed properly.

Requirements

Minimum supported version Header

wRTOS 1.0 SDK

windows.h

See Also: