From faad6f1e34db13fd03cb028bc47c2e58cfcc08af Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Fri, 21 Feb 1997 23:15:17 +0000 Subject: [PATCH] Increase FD_SETSIZE back to 1024, select code fixed now --- sys/sys/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/types.h b/sys/sys/types.h index ce9495adb8c..f2545bfc56a 100644 --- a/sys/sys/types.h +++ b/sys/sys/types.h @@ -136,7 +136,7 @@ typedef _BSD_TIME_T_ time_t; * be enough for most uses. */ #ifndef FD_SETSIZE -#define FD_SETSIZE 256 +#define FD_SETSIZE 1024 #endif typedef long fd_mask;