description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||||
---|---|---|---|---|---|---|---|---|---|
Learn more about: __invlpg |
__invlpg |
09/02/2019 |
|
|
3fb3633f-d9b7-4ec0-9e7f-a7f2fa8ed794 |
Microsoft Specific
Generates the x86 invlpg
instruction, which invalidates the translation lookaside buffer (TLB) for the page associated with memory pointed to by Address.
void __invlpg(
void* Address
);
Address
[in] A 64-bit address.
Intrinsic | Architecture |
---|---|
__invlpg |
x86, x64 |
Header file <intrin.h>
The intrinsic __invlpg
emits a privileged instruction, and is only available in kernel mode with a privilege level (CPL) of 0.
This routine is only available as an intrinsic.
END Microsoft Specific