mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:35:42 +00:00
[NTOSKRNL]
Fix a DPRINT svn path=/trunk/; revision=53703
This commit is contained in:
parent
3a93089ba7
commit
ca9e3a9c67
1 changed files with 4 additions and 4 deletions
|
@ -171,7 +171,7 @@ KiUnexpectedInterruptTailHandler(IN PKTRAP_FRAME TrapFrame)
|
|||
if (HalBeginSystemInterrupt(HIGH_LEVEL, TrapFrame->ErrCode, &OldIrql))
|
||||
{
|
||||
/* Warn user */
|
||||
DPRINT1("\n\x7\x7!!! Unexpected Interrupt %02lx !!!\n");
|
||||
DPRINT1("\n\x7\x7!!! Unexpected Interrupt 0x%02lx !!!\n", TrapFrame->ErrCode);
|
||||
|
||||
/* Now call the epilogue code */
|
||||
KiExitInterrupt(TrapFrame, OldIrql, FALSE);
|
||||
|
@ -228,7 +228,7 @@ VOID
|
|||
FASTCALL
|
||||
KiChainedDispatch(IN PKTRAP_FRAME TrapFrame,
|
||||
IN PKINTERRUPT Interrupt)
|
||||
{
|
||||
{
|
||||
KIRQL OldIrql;
|
||||
BOOLEAN Handled;
|
||||
PLIST_ENTRY NextEntry, ListHead;
|
||||
|
@ -245,7 +245,7 @@ KiChainedDispatch(IN PKTRAP_FRAME TrapFrame,
|
|||
ListHead = &Interrupt->InterruptListEntry;
|
||||
NextEntry = ListHead; /* The head is an entry! */
|
||||
while (TRUE)
|
||||
{
|
||||
{
|
||||
/* Check if this interrupt's IRQL is higher than the current one */
|
||||
if (Interrupt->SynchronizeIrql > Interrupt->Irql)
|
||||
{
|
||||
|
@ -304,7 +304,7 @@ VOID
|
|||
FASTCALL
|
||||
KiInterruptTemplateHandler(IN PKTRAP_FRAME TrapFrame,
|
||||
IN PKINTERRUPT Interrupt)
|
||||
{
|
||||
{
|
||||
/* Enter interrupt frame */
|
||||
KiEnterInterruptTrap(TrapFrame);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue