|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
InterlockedExchange
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
| );
|
|
Parameters
Target
Address of the LONG value to exchange. The function sets this LONG value to Value, and returns its prior value.
Value
Specifies a new value for the LONG value pointed to by Target.
Return Values
The function returns the prior value of the LONG value pointed to by Target.
Remarks
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.
See Also
InterlockedCompareExchange, InterlockedDecrement, InterlockedExchangeAdd, InterlockedIncrement
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|