[NTOS]: Remove checks for VDM alert during GPF. This is a Windows-specific hack for VDM, which isn't implemented.

svn path=/trunk/; revision=45298
This commit is contained in:
Sir Richard
2010-01-28 16:01:43 +00:00
parent da7d769c43
commit 08d30b3abb
-16
View File
@@ -967,14 +967,6 @@ KiTrap0DHandler(IN PKTRAP_FRAME TrapFrame,
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 @@ KiTrap0EHandler(IN PKTRAP_FRAME TrapFrame)
/* 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)