Visible to Intel only — GUID: GUID-9C7CAD7B-1E8B-4421-9ABA-FBF857DA5329
Visible to Intel only — GUID: GUID-9C7CAD7B-1E8B-4421-9ABA-FBF857DA5329
HLE Release _Store Functions
Stores the specified value at the specified address and releases pending active HLE transaction. This intrinsic function applies to C/C++ applications for Windows only.
void _Store_HLERelease(long volatile *Destination, long Value); |
void _Store64_HLERelease(__int64 volatile *Destination, __int64 Value); |
void _StorePointer_HLERelease(void * volatile *Destination, void * Value); |
Destination[out] |
pointer to the destination value |
Value [in] |
value to store at Destination. |
Stores the specified value at the specified address and releases a pending HLE transaction if one is active.
Nothing.