OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:maxfds
(Results
1 - 4
of
4
) sorted by relevancy
/xsrc/external/mit/xorg-server/dist/hw/sun/
sunInit.c
421
int
maxfds
= MAXCLIENTS + MAXSCREENS + 5;
local
424
rl.rlim_cur =
maxfds
< rl.rlim_max ?
maxfds
: rl.rlim_max;
/xsrc/external/mit/xorg-server.old/dist/hw/sun/
sunInit.c
502
int
maxfds
= MAXCLIENTS + MAXSCREENS + 5;
local
505
rl.rlim_cur =
maxfds
< rl.rlim_max ?
maxfds
: rl.rlim_max;
/src/crypto/external/bsd/openssh/dist/
ssh-agent.c
2043
after_poll(struct pollfd *pfd, size_t npfd, u_int
maxfds
)
2068
if (npfd >
maxfds
) {
2070
"skipping accept", activefds,
maxfds
);
2097
prepare_poll(struct pollfd **pfdp, size_t *npfdp, struct timespec *timeoutp, u_int
maxfds
)
2127
if (npfd >
maxfds
) {
2129
"skipping arming listener", npfd,
maxfds
);
2250
u_int
maxfds
;
local
2401
maxfds
= rlim.rlim_cur - SSH_AGENT_MIN_FDS;
2562
prepare_poll(&pfd, &npfd, &timeout,
maxfds
);
2574
after_poll(pfd, npfd,
maxfds
);
[
all
...]
/src/external/apache2/mDNSResponder/dist/mDNSShared/
uds_daemon.c
6815
struct rlimit
maxfds
, newfds;
local
6819
if (getrlimit(RLIMIT_NOFILE, &
maxfds
) < 0) { my_perror("ERROR: Unable to get file descriptor limit"); return 0; }
6820
if (setrlimit(RLIMIT_NOFILE, &
maxfds
) < 0) my_perror("ERROR: Unable to set maximum file descriptor limit");
6822
if (getrlimit(RLIMIT_NOFILE, &
maxfds
) < 0) { my_perror("ERROR: Unable to get file descriptor limit"); return 0; }
6823
newfds.rlim_max = (
maxfds
.rlim_max > MIN_OPENFILES) ?
maxfds
.rlim_max : MIN_OPENFILES;
6824
newfds.rlim_cur = (
maxfds
.rlim_cur > MIN_OPENFILES) ?
maxfds
.rlim_cur : MIN_OPENFILES;
6825
if (newfds.rlim_max !=
maxfds
.rlim_max || newfds.rlim_cur !=
maxfds
.rlim_cur
[
all
...]
Completed in 25 milliseconds
Indexes created Wed Jul 01 00:25:26 UTC 2026