|
From: Philippe W. <phi...@so...> - 2018-07-27 19:04:40
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=496f7e50ac23ebcb86bd9895b4239e2eefcad885 commit 496f7e50ac23ebcb86bd9895b4239e2eefcad885 Author: Philippe Waroquiers <phi...@sk...> Date: Thu Jul 26 23:16:53 2018 +0200 Show the stack trace info in case of Valgrind crash The stack information can be useful together with the stacktraces. Diff: --- coregrind/m_libcassert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_libcassert.c b/coregrind/m_libcassert.c index 42a54a5..a75a650 100644 --- a/coregrind/m_libcassert.c +++ b/coregrind/m_libcassert.c @@ -424,7 +424,7 @@ static void report_and_quit ( const HChar* report, const UnwindStartRegs* startRegsIN ) { show_sched_status_wrk (True, // host_stacktrace - False, // stack_usage + True, // stack_usage False, // exited_threads startRegsIN); VG_(printf)( |