|
From: Mark W. <ma...@so...> - 2021-03-03 15:03:00
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=23223e28a5ce1a62ee7cf0a7c578d6c0c8f0136b commit 23223e28a5ce1a62ee7cf0a7c578d6c0c8f0136b Author: Mark Wielaard <ma...@kl...> Date: Wed Mar 3 16:02:33 2021 +0100 Add an entry on the new --track-fds=all option to NEWS. Diff: --- NEWS | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index fa7c4b0183..8595a9034a 100644 --- a/NEWS +++ b/NEWS @@ -43,10 +43,19 @@ support for X86/macOS 10.13, AMD64/macOS 10.13 and nanoMIPS/Linux. * ==================== TOOL CHANGES ==================== -All the tools and their vgpreload libraries are now installed under -libexec because they cannot be executed directly and should be run -through the valgrind executable. This should be an internal, not user -visible, change, but might impact valgrind packagers. +* General tool changes + + - All the tools and their vgpreload libraries are now installed under + libexec because they cannot be executed directly and should be run + through the valgrind executable. This should be an internal, not user + visible, change, but might impact valgrind packagers. + + - The --track-fds option now respects -q, --quiet and won't output + anything if no file descriptors are leaked. It also won't report + the standard stdin (0), stdout (1) or stderr (2) descriptors as + being leaked with --trace-fds=yes anymore. To track whether the + standard file descriptors are still open at the end of the program + run use --trace-fds=all. * DHAT: |