The InterlockExchangeAdd 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 (
PLONG Addend, |
// pointer to the addend |
LONG Increment |
// increment value |
); |
The return value is the initial value of the Addend parameter.
The functions InterlockedExchangeAdd, InterlockedCompareExchange, InterlockedDecrement, InterlockedExchange, and InterlockedIncrement 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 Addend value. The result is stored in the address specified by Addend. The initial value of Addend is returned as the function value.
The variables for InterlockedExchangeAdd must be aligned on a 32-bit boundary; otherwise, this function will fail on multiprocessor x86 systems.
InterlockedCompareExchange, InterlockedDecrement, InterlockedExchange, InterlockedIncrement
file: /Techref/os/win/api/win32/func/src/f50_2.htm, 3KB, , updated: 2000/4/7 11:19, local time: 2024/11/5 17:47,
18.191.103.28:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f50_2.htm"> InterlockedExchangeAdd</A> |
Did you find what you needed? |