From 2a7aedcf12cf0cff65a0bba74cbb84a49c4550d1 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 10 Nov 2008 16:19:21 +0000 Subject: [PATCH] Handle EvM GC messaging properly. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8760 --- helgrind/libhb_core.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/helgrind/libhb_core.c b/helgrind/libhb_core.c index 3261f25321..15a64c845c 100644 --- a/helgrind/libhb_core.c +++ b/helgrind/libhb_core.c @@ -3065,10 +3065,12 @@ static void event_map_maybe_GC ( void ) } VG_(doneIterFM)( genMap ); - VG_(printf)( - "libhb: EvM GC: delete generations %lu and below, " - "retaining %lu entries\n", - maxGen, retained ); + if (VG_(clo_verbosity) > 1) { + VG_(message)(Vg_DebugMsg, + "libhb: EvM GC: delete generations %lu and below, " + "retaining %lu entries", + maxGen, retained ); + } VG_(deleteFM)( genMap, NULL, NULL ); -- 2.47.2