From: Amine Khaldi Date: Sun, 2 Mar 2014 13:01:16 +0000 (+0000) Subject: [NTOSKRNL] X-Git-Tag: ReactOS-0.3.16-CLT2014~41 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=3958819ba0f6ba7c649fd7e3d85e23d310629c05 [NTOSKRNL] * Print RealFrameCount here. svn path=/trunk/; revision=62377 --- diff --git a/reactos/ntoskrnl/ke/bug.c b/reactos/ntoskrnl/ke/bug.c index 9782230a0b9..820201f69fc 100644 --- a/reactos/ntoskrnl/ke/bug.c +++ b/reactos/ntoskrnl/ke/bug.c @@ -275,6 +275,7 @@ KeRosDumpStackFrames(IN PULONG_PTR Frame OPTIONAL, { /* Get the current frames (skip the two. One for the dumper, one for the caller) */ RealFrameCount = RtlCaptureStackBackTrace(2, FrameCount, (PVOID*)Frames, NULL); + DPRINT1("RealFrameCount =%lu\n", RealFrameCount); /* Dump them */ KeRosDumpStackFrameArray(Frames, RealFrameCount);