From 8dba06c771b1761775534c222f1375ecf661dc58 Mon Sep 17 00:00:00 2001 From: Paul Floyd Date: Tue, 24 Jan 2023 21:03:48 +0100 Subject: [PATCH] FreeBSD: remove different reserved fds number No idea where it originated. Causes no problems on FreeBSD 13.1 amd64. --- 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) { -- 2.47.2