mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 17:27:03 +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))
|
if (HalBeginSystemInterrupt(HIGH_LEVEL, TrapFrame->ErrCode, &OldIrql))
|
||||||
{
|
{
|
||||||
/* Warn user */
|
/* 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 */
|
/* Now call the epilogue code */
|
||||||
KiExitInterrupt(TrapFrame, OldIrql, FALSE);
|
KiExitInterrupt(TrapFrame, OldIrql, FALSE);
|
||||||
|
@ -228,7 +228,7 @@ VOID
|
||||||
FASTCALL
|
FASTCALL
|
||||||
KiChainedDispatch(IN PKTRAP_FRAME TrapFrame,
|
KiChainedDispatch(IN PKTRAP_FRAME TrapFrame,
|
||||||
IN PKINTERRUPT Interrupt)
|
IN PKINTERRUPT Interrupt)
|
||||||
{
|
{
|
||||||
KIRQL OldIrql;
|
KIRQL OldIrql;
|
||||||
BOOLEAN Handled;
|
BOOLEAN Handled;
|
||||||
PLIST_ENTRY NextEntry, ListHead;
|
PLIST_ENTRY NextEntry, ListHead;
|
||||||
|
@ -245,7 +245,7 @@ KiChainedDispatch(IN PKTRAP_FRAME TrapFrame,
|
||||||
ListHead = &Interrupt->InterruptListEntry;
|
ListHead = &Interrupt->InterruptListEntry;
|
||||||
NextEntry = ListHead; /* The head is an entry! */
|
NextEntry = ListHead; /* The head is an entry! */
|
||||||
while (TRUE)
|
while (TRUE)
|
||||||
{
|
{
|
||||||
/* Check if this interrupt's IRQL is higher than the current one */
|
/* Check if this interrupt's IRQL is higher than the current one */
|
||||||
if (Interrupt->SynchronizeIrql > Interrupt->Irql)
|
if (Interrupt->SynchronizeIrql > Interrupt->Irql)
|
||||||
{
|
{
|
||||||
|
@ -304,7 +304,7 @@ VOID
|
||||||
FASTCALL
|
FASTCALL
|
||||||
KiInterruptTemplateHandler(IN PKTRAP_FRAME TrapFrame,
|
KiInterruptTemplateHandler(IN PKTRAP_FRAME TrapFrame,
|
||||||
IN PKINTERRUPT Interrupt)
|
IN PKINTERRUPT Interrupt)
|
||||||
{
|
{
|
||||||
/* Enter interrupt frame */
|
/* Enter interrupt frame */
|
||||||
KiEnterInterruptTrap(TrapFrame);
|
KiEnterInterruptTrap(TrapFrame);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue