InterlockedExchangeAdd
This function performs an atomic addition of an increment value to an Addend variable. The function prevents more than one thread from using the same variable simultaneously.
LONG InterlockedExchangeAdd(
LPLONG Addend,
LONG Increment
);
Parameters
- Addend
[in, out] Pointer to the number that will have the Increment number added to it. - Increment
[in] Specifies the number to be added to the variable pointed to by the Addend parameter.
Return Values
The return value is the initial value of the variable pointed to by the Addend parameter.
Remarks
The InterlockedExchangeAdd, InterlockedCompareExchange, InterlockedDecrement, InterlockedExchange, and InterlockedIncrement functions provide a simple mechanism for synchronizing access to a variable that is shared by multiple threads. The threads of different processes can use this mechanism if the variable is in shared memory.
The InterlockedExchangeAdd function performs an atomic addition of the Increment value to the value pointed to by Addend. The result is stored in the address specified by Addend. The initial value of the variable pointed to by Addend is returned as the function value.
The variables for InterlockedExchangeAdd must be aligned on a 32-bit boundary.
Requirements
OS Versions: Windows CE .NET 4.0 and later.
Header: Windows.h.
Link Library: Coredll.lib.
See Also
InterlockedCompareExchange | InterlockedDecrement | InterlockedExchange | InterlockedIncrement
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.