Re: poll and FD_SETSIZE

From: Henrik Nordstrom <hno@dont-contact.us>
Date: Thu, 03 Jun 1999 22:27:59 +0000

Darren Steven wrote:

> This appears to happen because in include/squid.h, it says linux can't
> change FD_SETSIZE, and the initialisation of the variable Squid_MaxFD
> goes like this
> Squid_MaxFD = SQUID_MAXFD (2048 from config)
> if (FD_SETSIZE < Squid_MaxFD)
> Squid_MaxFD = FD_SETSIZE
>
> I thought that the --enable-poll would free the need for FD_SETSIZE
> limit, or is select still used somewhere ?.

You are probably correct. The FD_SETSIZE check in main.c should be
surrounded by #if !HAVE_POLL

#if !HAVE_POLL
        if (FD_SETSIZE < Squid_MaxFD)
            Squid_MaxFD = FD_SETSIZE;
#endif

--
Henrik Nordstrom
Spare time Squid hacker
Received on Thu Jun 03 1999 - 16:17:47 MDT

This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 16:46:43 MST