[NTOS:KE:EX] Fix comment typo.

This commit is contained in:
Hermès Bélusca-Maïto 2022-05-02 03:11:01 +02:00
parent 7b410fb8ca
commit 0f3da97456
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@
* - Acquire locks only on MP systems. * - Acquire locks only on MP systems.
* - Be safe at HIGH_LEVEL (no paged access). * - Be safe at HIGH_LEVEL (no paged access).
* - Preserve flags. * - Preserve flags.
* - Disable interrups. * - Disable interrupts.
*/ */
/*VOID /*VOID

View file

@ -588,7 +588,7 @@ KiRetireDpcList(IN PKPRCB Prcb)
TimerHand = Prcb->TimerHand; TimerHand = Prcb->TimerHand;
Prcb->TimerRequest = 0; Prcb->TimerRequest = 0;
/* Expire timers with interrups enabled */ /* Expire timers with interrupts enabled */
_enable(); _enable();
KiTimerExpiration(NULL, NULL, (PVOID)TimerHand, NULL); KiTimerExpiration(NULL, NULL, (PVOID)TimerHand, NULL);
_disable(); _disable();