#ifdef HAVE_UNISTD_H #include #endif #include #ifdef _SC_OPEN_MAX int getdtablesize() { return sysconf(_SC_OPEN_MAX); } #else #include /* Placed in the Public Domain by Mark Eichin, Cygnus Support 1994 */ int getdtablesize() { struct rlimit rl; getrlimit(RLIMIT_NOFILE, &rl); return rl.rlim_cur; } #endif