InterlockedExchange
Windows Mobile 6.5
A version of this page is also available for
4/8/2010
This function atomically exchanges a pair of 32-bit values.
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.