* fd_setsize
@ 2001-12-14 1:22 Hui_Ning
2001-12-14 9:53 ` fd_setsize Miquel van Smoorenburg
0 siblings, 1 reply; 2+ messages in thread
From: Hui_Ning @ 2001-12-14 1:22 UTC (permalink / raw)
To: linux-kernel
hi,
I am using 2.4 kernel. How can I increase the fd_setsize so that I can use
select to check more than 1024 file descriptors?
thanks,
hui
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: fd_setsize
2001-12-14 1:22 fd_setsize Hui_Ning
@ 2001-12-14 9:53 ` Miquel van Smoorenburg
0 siblings, 0 replies; 2+ messages in thread
From: Miquel van Smoorenburg @ 2001-12-14 9:53 UTC (permalink / raw)
To: linux-kernel
In article <OFB046FAEF.D6FAB48A-ON86256B22.00075ECB@3com.com>,
<Hui_Ning@3com.com> wrote:
>I am using 2.4 kernel. How can I increase the fd_setsize so that I can use
>select to check more than 1024 file descriptors?
That's more a glibc question. On many systems, you can set
FD_SETSIZE before including <sys/select.h> and the libs will
use that FD_SETSIZE from that point on.
With glibc, you can't do that. Well that's not entirely true, the
following works but is not portable and an unbelievable hack.
BTW, why not use poll() - it has no fd_set imposed limit.
BTW2 don't forget to increase the ulimit filedescriptor max,
and perhaps /proc/sys/fs/{file-max,inode-max}
/*
* Cannot increase FD_SETSIZE on Linux, but we can increase __FD_SETSIZE
* with glibc 2.2 (or later? remains to be seen). We do this by including
* bits/types.h which defines __FD_SETSIZE first, then we redefine
* __FD_SETSIZE. Ofcourse a user program may NEVER include bits/whatever.h
* directly, so this is a dirty hack!
*/
#include <features.h>
#if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2)
# include <bits/types.h>
# undef __FD_SETSIZE
# define __FD_SETSIZE 8192
#endif
Mike.
--
Deadlock, n.:
Deceased rastaman.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2001-12-14 9:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-12-14 1:22 fd_setsize Hui_Ning
2001-12-14 9:53 ` fd_setsize Miquel van Smoorenburg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®