Commit in reactos/ntoskrnl/ke/i386 on MAIN | |||
exp.c | +4 | 1.87 -> 1.88 |
- Stopped the printing of frames after the nice value 'deadbeef' in KeRosDumpStackFrames.
diff -u -r1.87 -r1.88 --- exp.c 2 Jul 2004 01:36:25 -0000 1.87 +++ exp.c 1 Aug 2004 07:28:43 -0000 1.88 @@ -660,6 +660,10 @@
{ DbgPrint("<%X>", (PVOID)Frame[1]); }
+ if (Frame[1] == 0xdeadbeef) + { + break; + }
Frame = (PULONG)Frame[0]; DbgPrint(" "); }