Searched refs:ufds (Results 1 – 2 of 2) sorted by relevance
1231 if (ufds[i].fd > max_fd)1232 max_fd = ufds[i].fd;1243 PHP_SAFE_FD_SET(ufds[i].fd, &rset);1245 if (ufds[i].events & POLLOUT) {1246 PHP_SAFE_FD_SET(ufds[i].fd, &wset);1248 if (ufds[i].events & POLLPRI) {1249 PHP_SAFE_FD_SET(ufds[i].fd, &eset);1267 ufds[i].revents = 0;1271 ufds[i].revents |= POLLIN;1274 ufds[i].revents |= POLLOUT;[all …]
139 PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout);158 # define php_poll2(ufds, nfds, timeout) poll(ufds, nfds, timeout) argument
Completed in 10 milliseconds