Skip to content

Latest commit

 

History

History
73 lines (62 loc) · 1.48 KB

File metadata and controls

73 lines (62 loc) · 1.48 KB
title __invlpg | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-tools
ms.tgt_pltfrm
ms.topic article
f1_keywords
__invlpg
__invlpg_cpp
dev_langs
C++
helpviewer_keywords
invlpg instruction
__invlpg intrinsic
ms.assetid 3fb3633f-d9b7-4ec0-9e7f-a7f2fa8ed794
caps.latest.revision 12
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
ru-ru
zh-cn
zh-tw
translation.priority.mt
cs-cz
pl-pl
pt-br
tr-tr

__invlpg

Microsoft Specific

Generates the x86 invlpg instruction, which invalidates the translation lookaside buffer (TLB) for the page associated with memory pointed to by Address.

Syntax

void __invlpg(  
   void* Address  
);  

Parameters

[in] Address
A 64-bit address.

Requirements

Intrinsic Architecture
__invlpg x86, [!INCLUDEvcprx64]

Header file <intrin.h>

Remarks

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

See Also

Compiler Intrinsics