From 1fb5cc682964f911ae5c7a563da9fccc4b5375c6 Mon Sep 17 00:00:00 2001 From: Nick Mathewson <nickm@torproject.org> Date: Tue, 5 Jul 2011 00:36:09 -0400 Subject: [PATCH] Use "unlimited select" on OSX so that we can have more than FD_SETSIZE fds --- select.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/select.c b/select.c index 349474d5..805c08d0 100644 --- a/select.c +++ b/select.c @@ -29,6 +29,12 @@ #include "event2/event-config.h" #include "evconfig-private.h" +#ifdef __APPLE__ +/* Apple wants us to define this if we might ever pass more than + * FD_SETSIZE bits to select(). */ +#define _DARWIN_UNLIMITED_SELECT +#endif + #include <sys/types.h> #ifdef _EVENT_HAVE_SYS_TIME_H #include <sys/time.h> -- 2.40.0