|
From: Jeremy F. <je...@go...> - 2005-02-22 02:33:59
|
CVS commit by fitzhardinge:
Always report core-dumping signals. If the client gets a fatal core-dumping
signal, always report it, since it indicates a real program bug.
M +1 -1 vg_signals.c 1.126
--- valgrind/coregrind/vg_signals.c #1.125:1.126
@@ -1296,5 +1296,5 @@ static void vg_default_action(const vki_
}
- if (VG_(clo_verbosity) != 0 && (could_core || VG_(clo_verbosity) > 1)) {
+ if (VG_(clo_verbosity) != 0 || could_core) {
VG_(message)(Vg_UserMsg, "");
VG_(message)(Vg_UserMsg, "Process terminating with default action of signal %d (%s)%s",
|