Subject: Re: default maximum number of open file descriptors too small?
To: None <perry@piermont.com>
From: Bakul Shah <bakul@netcom.com>
List: tech-kern
Date: 11/26/1995 17:20:12
>                                                            Should this
> be changed? Its a bit of a hardship for big event driven programs and
> similar things...

IMHO this should be changed as well as select() fixed up.
Currently you can't select on file descriptors >= 256 (so in
effect fds >= 256 are second class descriptors).  The fix is
to stop using FD_SETSIZE within the kernel (as well as
fdset_t) and allocate large enough fd_mask arrays to hold the
bits.