Author: akhaldi Date: Sun Mar 2 13:01:16 2014 New Revision: 62377
URL: http://svn.reactos.org/svn/reactos?rev=62377&view=rev Log: [NTOSKRNL] * Print RealFrameCount here.
Modified: trunk/reactos/ntoskrnl/ke/bug.c
Modified: trunk/reactos/ntoskrnl/ke/bug.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/bug.c?rev=62377... ============================================================================== --- trunk/reactos/ntoskrnl/ke/bug.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/ke/bug.c [iso-8859-1] Sun Mar 2 13:01:16 2014 @@ -275,6 +275,7 @@ { /* 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);