__faststorefence
Microsoft Specific
Guarantees that every preceding store is globally visible before any subsequent store.
void __faststorefence();
Requirements
Intrinsic | Architecture |
---|---|
__faststorefence |
x64 |
Header file <intrin.h>
Remarks
On the x64 platform, this routine generates an instruction that is a faster store fence than the sfence instruction. Use this intrinsic instead of _mm_sfence on the x64 platform.
This routine is only available as an intrinsic.