Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Microsoft Specific
Disables interrupts.
void _disable(void);
Requirements
Intrinsic |
Architecture |
---|---|
_disable |
x86, IPF, x64 |
Header file <intrin.h>
Remarks
_disable instructs the processor to clear the interrupt flag. On x86 systems, this function generates the Clear Interrupt Flag (cli) instruction. On IPF systems, this function generates the Reset System Mask (rsm) instruction with an argument that clears the interrupt control flag.
This function is only available in kernel mode. If used in user mode, a Privileged Instruction exception is thrown at run time.
On IPF platforms, this routine is only available as an intrinsic.