Author: sir_richard Date: Fri Jan 29 08:27:55 2010 New Revision: 45315
URL: http://svn.reactos.org/svn/reactos?rev=45315&view=rev Log: [NTOS]: Return correct IRQ 0 vector instead of IRQL, when the timer interrupt ends.
Modified: trunk/reactos/ntoskrnl/ke/time.c
Modified: trunk/reactos/ntoskrnl/ke/time.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/time.c?rev=4531... ============================================================================== --- trunk/reactos/ntoskrnl/ke/time.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/ke/time.c [iso-8859-1] Fri Jan 29 08:27:55 2010 @@ -117,7 +117,7 @@
/* Disable interrupts and end the interrupt */ _disable(); - HalEndSystemInterrupt(Irql, CLOCK2_LEVEL); + HalEndSystemInterrupt(Irql, PRIMARY_VECTOR_BASE + 0);
/* Exit the interrupt */ KiEoiHelper(TrapFrame);