|
From: Jeremy F. <je...@go...> - 2005-02-22 03:16:10
|
CVS commit by fitzhardinge:
Don't print non-coredumping fatal signals at normal verbosity levels..
Also, only always-print coredumping signals which were sent by the kernel
(ie, don't always print ones sent by kill, etc).
M +1 -1 vg_signals.c 1.128
--- valgrind/coregrind/vg_signals.c #1.127:1.128
@@ -1296,5 +1296,5 @@ static void vg_default_action(const vki_
}
- if (VG_(clo_verbosity) != 0 || could_core) {
+ if (VG_(clo_verbosity) > 1 || (could_core && info->si_code > VKI_SI_USER)) {
VG_(message)(Vg_UserMsg, "");
VG_(message)(Vg_UserMsg, "Process terminating with default action of signal %d (%s)%s",
|