From 42a737d0a4191c776ef368a93fe4188b241fa572 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sat, 7 Jun 2003 15:36:47 +0000 Subject: [PATCH] * poll.cc: Define FD_SETSIZE to ridiculously large number so that there will be no artificially large limits. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/poll.cc | 1 + 2 files changed, 6 insertions(+) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 2c146ab96..b70737541 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2003-06-07 Christopher Faylor + + * poll.cc: Define FD_SETSIZE to ridiculously large number so that there + will be no artificially large limits. + 2003-06-07 Christopher Faylor * fhandler_tty.cc (fhandler_tty_slave::close): Free the console when diff --git a/winsup/cygwin/poll.cc b/winsup/cygwin/poll.cc index e12ed969d..44d00b9a5 100644 --- a/winsup/cygwin/poll.cc +++ b/winsup/cygwin/poll.cc @@ -10,6 +10,7 @@ #define __INSIDE_CYGWIN_NET__ +#define FD_SETSIZE 16384 // lots of fds #include "winsup.h" #include #include