Visible to Intel only — GUID: GUID-C59C41CA-92CA-46D5-A1D4-31F08773980B
Visible to Intel only — GUID: GUID-C59C41CA-92CA-46D5-A1D4-31F08773980B
HLE Release _InterlockedExchangeAdd Functions
Performs an atomic addition of two values and releases pending active HLE transaction. This intrinsic function applies to C/C++ applications for Windows only.
long _InterlockedExchangeAdd_HLERelease(long volatile *Addend, long Value); |
__int64 _InterlockedExchangeAdd64_HLERelease(__int64 volatile *Addend, __int64 Value); |
Addend [in, out] |
pointer to the addend which will be replaced with the result of the addition |
Value [in] |
value to be added to the value referenced by the Addend parameter |
Performs an atomic addition of two values and releases a pending HLE transaction (if one is active).
Returns the initial value referenced by the Addend parameter.