Home
last modified time | relevance | path

Searched refs:num_fds_tmp (Results 1 – 1 of 1) sorted by relevance

/dports/sysutils/conman/conman-conman-0.3.0/
H A Dtpoll.c831 int num_fds_tmp; in _tpoll_grow() local
841 num_fds_tmp = tp->num_fds_alloc; in _tpoll_grow()
842 while ((num_fds_tmp < num_fds_req) && (num_fds_tmp > 0)) { in _tpoll_grow()
843 num_fds_tmp *= 2; in _tpoll_grow()
845 if (num_fds_tmp < num_fds_req) { in _tpoll_grow()
846 num_fds_tmp = num_fds_req; in _tpoll_grow()
854 realloc (tp->fd_array, num_fds_tmp * sizeof (struct pollfd)))) { in _tpoll_grow()
858 num_fds_new = num_fds_tmp - tp->num_fds_alloc; in _tpoll_grow()
860 for (i = tp->num_fds_alloc; i < num_fds_tmp; i++) { in _tpoll_grow()
865 tp->num_fds_alloc = num_fds_tmp; in _tpoll_grow()