mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
Prevent double output
svn path=/trunk/; revision=6250
This commit is contained in:
parent
2f9834a4b1
commit
307c3b1526
1 changed files with 5 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: bug.c,v 1.38 2003/08/27 21:28:08 dwelch Exp $
|
/* $Id: bug.c,v 1.39 2003/10/06 16:24:20 gvg Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
* FILE: ntoskrnl/ke/bug.c
|
* FILE: ntoskrnl/ke/bug.c
|
||||||
|
@ -183,7 +183,10 @@ KeBugCheckEx(ULONG BugCheckCode,
|
||||||
|
|
||||||
/* Make sure we're switching back to the blue screen and print messages on it */
|
/* Make sure we're switching back to the blue screen and print messages on it */
|
||||||
HalReleaseDisplayOwnership();
|
HalReleaseDisplayOwnership();
|
||||||
KdDebugState |= KD_DEBUG_SCREEN;
|
if (0 == (KdDebugState & KD_DEBUG_GDB))
|
||||||
|
{
|
||||||
|
KdDebugState |= KD_DEBUG_SCREEN;
|
||||||
|
}
|
||||||
|
|
||||||
__asm__("cli\n\t");
|
__asm__("cli\n\t");
|
||||||
if (KeGetCurrentIrql() < DISPATCH_LEVEL)
|
if (KeGetCurrentIrql() < DISPATCH_LEVEL)
|
||||||
|
|
Loading…
Reference in a new issue