The InterlockedExchange function atomically exchanges a pair of 32-bit values. The function prevents more than one thread from using the same variable simultaneously.
LONG InterlockedExchange(
LPLONG Target, |
// address of 32-bit value to exchange |
LONG Value |
// new value for the LONG value pointed to by Target |
); |
The function returns the prior value of the LONG value pointed to by Target.
The functions InterlockedExchange, InterlockedCompareExchange, InterlockedDecrement, InterlockedExchangeAdd, 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 variable pointed to by the Target parameter must be aligned on a 32-bit boundary; otherwise, this function will fail on multiprocessor x86 systems.
InterlockedCompareExchange, InterlockedDecrement, InterlockedExchangeAdd, InterlockedIncrement
file: /Techref/os/win/api/win32/func/src/f50_1.htm, 2KB, , updated: 2000/4/7 11:19, local time: 2024/11/7 23:39,
3.129.72.26: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://massmind.ecomorder.com/Techref/os/win/api/win32/func/src/f50_1.htm"> InterlockedExchange</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.