- Stopped the printing of frames after the nice value 'deadbeef' in KeRosDumpStackFrames.

svn path=/trunk/; revision=10333
This commit is contained in:
Hartmut Birr 2004-08-01 07:28:43 +00:00
parent b36f5c8459
commit 06b9a76a1b

View file

@ -660,6 +660,10 @@ KeRosDumpStackFrames ( PULONG Frame, ULONG FrameCount )
{ {
DbgPrint("<%X>", (PVOID)Frame[1]); DbgPrint("<%X>", (PVOID)Frame[1]);
} }
if (Frame[1] == 0xdeadbeef)
{
break;
}
Frame = (PULONG)Frame[0]; Frame = (PULONG)Frame[0];
DbgPrint(" "); DbgPrint(" ");
} }