- Make KDBG handle assertion failures/int2C the same way as breakpoints/int3 (that is, ignore them from user-mode by default) for the time being until an internal prompt-routine is implemented.

svn path=/trunk/; revision=69209
This commit is contained in:
Stefan Ginsberg 2015-09-12 21:44:48 +00:00
parent 0b875af84a
commit 2c81e1e2b1

View file

@ -77,7 +77,7 @@ static KDB_ENTER_CONDITION KdbEnterConditions[][2] =
{ KdbDoNotEnter, KdbEnterFromKmode }, /* 17: Alignment Check */
{ KdbDoNotEnter, KdbEnterFromKmode }, /* 18: Machine Check */
{ KdbDoNotEnter, KdbEnterFromKmode }, /* 19: SIMD fault */
{ KdbEnterAlways, KdbEnterAlways }, /* 20: Assertion failure */
{ KdbEnterFromKmode, KdbDoNotEnter }, /* 20: Assertion failure */
{ KdbDoNotEnter, KdbEnterFromKmode } /* Last entry: used for unknown exceptions */
};