mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
[NTOS:KDBG] For SYSREG2: HACK emission of a 'bt' command when entering the debugger
CORE-19807
This commit is contained in:
parent
42914af218
commit
52192f19d6
|
@ -3278,6 +3278,12 @@ KdbpCliMainLoop(
|
|||
static CHAR Command[1024];
|
||||
static CHAR LastCommand[1024] = "";
|
||||
|
||||
// FIXME HACK: SYSREG SUPPORT CORE-19807 -- Emit a backtrace.
|
||||
// TODO: Remove once SYSREG "bt" command emission is fixed!
|
||||
#if 1
|
||||
KdbpDoCommand("bt");
|
||||
#endif
|
||||
|
||||
if (EnteredOnSingleStep)
|
||||
{
|
||||
if (!KdbSymPrintAddress((PVOID)KeGetContextPc(KdbCurrentTrapFrame), KdbCurrentTrapFrame))
|
||||
|
|
Loading…
Reference in a new issue