From: Philippe Waroquiers Date: Fri, 11 Jan 2013 23:48:28 +0000 (+0000) Subject: output the nr of IP in the stacktrace header produced by v.info exectxt X-Git-Tag: svn/VALGRIND_3_9_0~459 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e008ba56c03c0b579e859c4281ec4e90cc7d3801;p=thirdparty%2Fvalgrind.git output the nr of IP in the stacktrace header produced by v.info exectxt git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13222 --- diff --git a/coregrind/m_execontext.c b/coregrind/m_execontext.c index afcde03888..b81dbffae6 100644 --- a/coregrind/m_execontext.c +++ b/coregrind/m_execontext.c @@ -156,8 +156,8 @@ void VG_(print_ExeContext_stats) ( Bool with_stacktraces ) VG_(message)(Vg_DebugMsg, " exectx: Printing contexts stacktraces\n"); for (i = 0; i < ec_htab_size; i++) { for (ec = ec_htab[i]; ec; ec = ec->chain) { - VG_(message)(Vg_DebugMsg, " exectx: stacktrace ecu %u\n", - ec->ecu); + VG_(message)(Vg_DebugMsg, " exectx: stacktrace ecu %u n_ips %u\n", + ec->ecu, ec->n_ips); VG_(pp_StackTrace)( ec->ips, ec->n_ips ); } }