HomeSort by: relevance | last modified time | path
    Searched refs:max_user_fd (Results 1 - 4 of 4) sorted by relevancy

  /src/bin/sh/
redir.h 60 extern int max_user_fd; /* highest fd used by user */
main.c 88 int max_user_fd; variable in typeref:typename:int
137 max_user_fd = fcntl(0, F_MAXFD);
138 if (max_user_fd < 2)
139 max_user_fd = 2;
redir.c 284 fd, max_user_fd, user_fd_limit));
285 if (fd < user_fd_limit && fd > max_user_fd)
286 max_user_fd = fd;
323 if ((bigfd = big_sh_fd) < max_user_fd)
324 bigfd = max_user_fd;
1145 for (i = 0; i <= max_user_fd; i++)
1157 (fd >= user_fd_limit && fd > max_user_fd))
parser.c 58 #include "redir.h" /* defines max_user_fd */
753 n->ndup.dupfd > max_user_fd)
754 max_user_fd = n->ndup.dupfd;
1600 if (fd < user_fd_limit && fd > max_user_fd)
1601 max_user_fd = fd;

Completed in 15 milliseconds