From 80e2524997a0c35af7af268abde9936ce92426a4 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Thu, 30 Jul 2009 23:36:43 +0000 Subject: [PATCH] Don't bother printing "My PID" when logging to a file or socket, as that value is shown at the start of every output line. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10669 --- coregrind/m_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_main.c b/coregrind/m_main.c index b6ef7ee4b6..6e33e77a3b 100644 --- a/coregrind/m_main.c +++ b/coregrind/m_main.c @@ -1052,7 +1052,7 @@ static void print_preamble ( Bool logging_to_fd, } if (!VG_(clo_xml) && VG_(clo_verbosity) > 0 && !logging_to_fd) { - VG_(umsg)("My PID: %d, parent PID: %d\n", VG_(getpid)(), VG_(getppid)()); + VG_(umsg)("Parent PID: %d\n", VG_(getppid)()); } else if (VG_(clo_xml)) { -- 2.47.3