Author: ion
Date: Sat Aug 26 20:07:31 2006
New Revision: 23722
URL:
http://svn.reactos.org/svn/reactos?rev=23722&view=rev
Log:
- Remove useless stack operations in KiInterruptDispatch that I used for debugging.
Modified:
trunk/reactos/ntoskrnl/ke/i386/trap.s
Modified: trunk/reactos/ntoskrnl/ke/i386/trap.s
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/i386/trap.s?re…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/i386/trap.s (original)
+++ trunk/reactos/ntoskrnl/ke/i386/trap.s Sat Aug 26 20:07:31 2006
@@ -1446,7 +1446,6 @@
/* Check if it was handled */
or eax, eax
jz SpuriousInt
- sub esp, 12
/* Acquire the lock */
GetIntLock:
@@ -1462,9 +1461,6 @@
/* Release the lock */
RELEASE_SPINLOCK(esi)
- /* Clean up the stack */
- add esp, 12
-
/* Exit the interrupt */
mov esi, $
cli