Author: sir_richard
Date: Thu Jan 28 17:01:43 2010
New Revision: 45298
URL:
http://svn.reactos.org/svn/reactos?rev=45298&view=rev
Log:
[NTOS]: Remove checks for VDM alert during GPF. This is a Windows-specific hack for VDM,
which isn't implemented.
Modified:
trunk/reactos/ntoskrnl/ke/i386/traphdlr.c
Modified: trunk/reactos/ntoskrnl/ke/i386/traphdlr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/i386/traphdlr.…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/i386/traphdlr.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/i386/traphdlr.c [iso-8859-1] Thu Jan 28 17:01:43 2010
@@ -967,14 +967,6 @@
TrapFrame);
}
- /* Check for custom VDM trap handler */
- if (KeGetPcr()->VdmAlert)
- {
- /* Not implemented */
- UNIMPLEMENTED;
- while (TRUE);
- }
-
/*
* Check for a fault during checking of the user instruction.
*
@@ -1086,14 +1078,6 @@
/* Save trap frame */
KiEnterTrap(TrapFrame);
- /* Check for custom VDM trap handler */
- if (KeGetPcr()->VdmAlert)
- {
- /* Not implemented */
- UNIMPLEMENTED;
- while (TRUE);
- }
-
/* Check if this is the base frame */
Thread = KeGetCurrentThread();
if (KeGetTrapFrame(Thread) != TrapFrame)