|
From: Paul F. <pa...@so...> - 2023-01-24 20:05:16
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=8dba06c771b1761775534c222f1375ecf661dc58 commit 8dba06c771b1761775534c222f1375ecf661dc58 Author: Paul Floyd <pj...@wa...> Date: Tue Jan 24 21:03:48 2023 +0100 FreeBSD: remove different reserved fds number No idea where it originated. Causes no problems on FreeBSD 13.1 amd64. Diff: --- coregrind/m_main.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/coregrind/m_main.c b/coregrind/m_main.c index 7a22b088a0..4316e625fa 100644 --- a/coregrind/m_main.c +++ b/coregrind/m_main.c @@ -1134,11 +1134,7 @@ void main_process_cmd_line_options( void ) /* Number of file descriptors that Valgrind tries to reserve for its own use - just a small constant. */ -#if defined(VGO_freebsd) -#define N_RESERVED_FDS (20) -#else #define N_RESERVED_FDS (12) -#endif static void setup_file_descriptors(void) { |