Home
last modified time | relevance | path

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

/PHP-8.2/main/
H A Dnetwork.c1198 if (ufds[i].fd > max_fd)
1199 max_fd = ufds[i].fd;
1218 PHP_SAFE_FD_SET(ufds[i].fd, &rset);
1220 if (ufds[i].events & POLLOUT) {
1221 PHP_SAFE_FD_SET(ufds[i].fd, &wset);
1223 if (ufds[i].events & POLLPRI) {
1224 PHP_SAFE_FD_SET(ufds[i].fd, &eset);
1242 ufds[i].revents = 0;
1246 ufds[i].revents |= POLLIN;
1249 ufds[i].revents |= POLLOUT;
[all …]
H A Dphp_network.h140 PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout);
159 # define php_poll2(ufds, nfds, timeout) poll(ufds, nfds, timeout) argument

Completed in 19 milliseconds