reactos/ntoskrnl/ke/i386
diff -u -r1.83 -r1.84
--- exp.c 9 Mar 2004 21:49:53 -0000 1.83
+++ exp.c 13 Mar 2004 18:28:33 -0000 1.84
@@ -318,7 +318,10 @@
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 @@
* 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)