mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 04:13:32 +00:00
tinus <[email protected]>
Change the backtrace command to show current EIP too. svn path=/trunk/; revision=14864
This commit is contained in:
@@ -569,6 +569,15 @@ KdbpCmdBackTrace(ULONG Argc, PCHAR Argv[])
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
KdbpPrint("Eip:\n");
|
||||
/* Try printing the function at EIP */
|
||||
if (!KdbSymPrintAddress((PVOID)KdbCurrentTrapFrame->Tf.Eip))
|
||||
KdbpPrint("<%08x>\n", KdbCurrentTrapFrame->Tf.Eip);
|
||||
else
|
||||
KdbpPrint("\n");
|
||||
}
|
||||
|
||||
KdbpPrint("Frames:\n");
|
||||
while (Frame != 0)
|
||||
|
||||
Reference in New Issue
Block a user