From 4fa5e49fa301f5bb92b7772c4219b567b300208c Mon Sep 17 00:00:00 2001 From: Sir Richard Date: Fri, 29 Jan 2010 07:27:55 +0000 Subject: [PATCH] [NTOS]: Return correct IRQ 0 vector instead of IRQL, when the timer interrupt ends. svn path=/trunk/; revision=45315 --- reactos/ntoskrnl/ke/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/ke/time.c b/reactos/ntoskrnl/ke/time.c index 11fca02ea1c..1677ae4ae18 100644 --- a/reactos/ntoskrnl/ke/time.c +++ b/reactos/ntoskrnl/ke/time.c @@ -117,7 +117,7 @@ KeUpdateSystemTime(IN PKTRAP_FRAME TrapFrame, /* Disable interrupts and end the interrupt */ _disable(); - HalEndSystemInterrupt(Irql, CLOCK2_LEVEL); + HalEndSystemInterrupt(Irql, PRIMARY_VECTOR_BASE + 0); /* Exit the interrupt */ KiEoiHelper(TrapFrame);