mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
- Fixed comment.
svn path=/trunk/; revision=8687
This commit is contained in:
parent
6849e40ba7
commit
6cee07a9b2
1 changed files with 6 additions and 2 deletions
|
@ -318,7 +318,10 @@ KiDoubleFaultHandler(VOID)
|
|||
StackBase = (ULONG)&init_stack;
|
||||
}
|
||||
|
||||
/* Change to an #if 0 if no frames are printed because of fpo. */
|
||||
/*
|
||||
Change to an #if 0 to reduce the amount of information printed on
|
||||
a recursive stack trace.
|
||||
*/
|
||||
#if 1
|
||||
DbgPrint("Frames: ");
|
||||
Frame = (PULONG)OldTss->Ebp;
|
||||
|
@ -488,7 +491,8 @@ KiDumpTrapFrame(PKTRAP_FRAME Tf, ULONG Parameter1, ULONG Parameter2)
|
|||
* Dump the stack frames
|
||||
*/
|
||||
DbgPrint("Frames: ");
|
||||
#if 0
|
||||
/* Change to an #if 0 if no frames are printed because of fpo. */
|
||||
#if 1
|
||||
i = 1;
|
||||
Frame = (PULONG)Tf->Ebp;
|
||||
while (Frame != NULL)
|
||||
|
|
Loading…
Reference in a new issue