KernInterruptLevel: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
Is the equivalent of what DosHelp_GetDOSVar returns for index DHGETDOSV_INTERRUPTLEV. | Is the equivalent of what DosHelp_GetDOSVar returns for index DHGETDOSV_INTERRUPTLEV. | ||
The _KernInterruptLevel global variable is a | The _KernInterruptLevel global variable is pointing to a 1-byte value that contains the current interrupt level if the code is currently executing in interrupt context. It contains 0xFF if the code is currently executing in task context. | ||
[[Category:KEE]] | [[Category:KEE]] |
Revision as of 17:16, 24 November 2023
Dereferences to the linear address pointing to the interrupt level.
Is the equivalent of what DosHelp_GetDOSVar returns for index DHGETDOSV_INTERRUPTLEV.
The _KernInterruptLevel global variable is pointing to a 1-byte value that contains the current interrupt level if the code is currently executing in interrupt context. It contains 0xFF if the code is currently executing in task context.