|
From: Nicholas N. <nj...@ca...> - 2003-11-13 16:49:53
|
CVS commit by nethercote:
Be quieter.
M +1 -1 vg_proxylwp.c 1.5
--- valgrind/coregrind/vg_proxylwp.c #1.4:1.5
@@ -1054,5 +1054,5 @@ void VG_(proxy_delete)(ThreadId tid, Boo
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);
|