From: Nicholas Nethercote Date: Thu, 13 Nov 2003 16:49:22 +0000 (+0000) Subject: Be quieter. X-Git-Tag: svn/VALGRIND_2_1_0~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5de6ace29cdfaa8d721fad6fac1e4d024ae490d1;p=thirdparty%2Fvalgrind.git Be quieter. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2019 --- diff --git a/coregrind/vg_proxylwp.c b/coregrind/vg_proxylwp.c index aba9217490..08563c9b58 100644 --- a/coregrind/vg_proxylwp.c +++ b/coregrind/vg_proxylwp.c @@ -1053,7 +1053,7 @@ void VG_(proxy_delete)(ThreadId tid, Bool force) sys_wait_results(True, tid, PX_Exiting); res = proxy_wait(proxy, True, &status); - if (!res || status != 0) + if ((!res || status != 0) && VG_(clo_verbosity) > 1) VG_(printf)("proxy %d for tid %d exited status %d, res %d\n", lwp, tid, status, res);