mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Print stack frames as densely as possible.
svn path=/trunk/; revision=3248
This commit is contained in:
parent
d7c17b103d
commit
90bd33d955
1 changed files with 2 additions and 2 deletions
|
@ -301,7 +301,7 @@ KiDoubleFaultHandler(VOID)
|
||||||
{
|
{
|
||||||
print_address((PVOID)Frame[1]);
|
print_address((PVOID)Frame[1]);
|
||||||
Frame = (PULONG)Frame[0];
|
Frame = (PULONG)Frame[0];
|
||||||
DbgPrint("\n");
|
DbgPrint(" ");
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
DbgPrint("Frames: ");
|
DbgPrint("Frames: ");
|
||||||
|
@ -470,7 +470,7 @@ KiDumpTrapFrame(PKTRAP_FRAME Tf, ULONG Parameter1, ULONG Parameter2)
|
||||||
print_address((PVOID)Frame[1]);
|
print_address((PVOID)Frame[1]);
|
||||||
Frame = (PULONG)Frame[0];
|
Frame = (PULONG)Frame[0];
|
||||||
i++;
|
i++;
|
||||||
DbgPrint("\n");
|
DbgPrint(" ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue