]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Raise the number of reserved fds in m_main.c from 10 to 12.
authorIvo Raisr <ivosh@ivosh.net>
Thu, 24 Mar 2016 06:24:12 +0000 (06:24 +0000)
committerIvo Raisr <ivosh@ivosh.net>
Thu, 24 Mar 2016 06:24:12 +0000 (06:24 +0000)
Fixes BZ#360752.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15835

NEWS
coregrind/m_main.c

diff --git a/NEWS b/NEWS
index 134b84aebf3960d84362bf5d8fd9c5887eb2f1fd..a64246a97cd26a32943bbc03edddc537949c2321 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -83,6 +83,7 @@ where XXXXXX is the bug number as listed below.
 359871  Incorrect mask handling in ppoll
 360425  arm64 unsupported instruction ldpsw
 360519  none/tests/arm64/memory.vgtest might fail with newer gcc
+360752  raise the number of reserved fds in m_main.c from 10 to 12
 
 n-i-bz Fix incorrect (or infinite loop) unwind on RHEL7 x86 and amd64
 n-i-bz massif --pages-as-heap=yes does not report peak caused by mmap+munmap
index fd05185c882c0faf3c13ac2e08344e89bdea9337..54997bde294c77599410e397cb2365733028e051 100644 (file)
@@ -1509,8 +1509,8 @@ static void print_preamble ( Bool logging_to_fd,
 /*====================================================================*/
 
 /* Number of file descriptors that Valgrind tries to reserve for
-   it's own use - just a small constant. */
-#define N_RESERVED_FDS (10)
+   its own use - just a small constant. */
+#define N_RESERVED_FDS (12)
 
 static void setup_file_descriptors(void)
 {