1
0
mirror of https://github.com/php/php-src.git synced 2026-04-30 03:33:17 +02:00

- Errr, rule nº 1: be portable :)

This commit is contained in:
Felipe Pena
2009-01-02 21:42:25 +00:00
parent 05e0fb8179
commit 7debfa2421
+2
View File
@@ -1147,7 +1147,9 @@ PHPAPI int php_poll2(php_pollfd *ufds, unsigned int nfds, int timeout)
tv.tv_sec = timeout / 1000;
tv.tv_usec = (timeout - (tv.tv_sec * 1000)) * 1000;
}
#ifndef PHP_WIN32
errno = 0;
#endif
n = select(max_fd + 1, &rset, &wset, &eset, timeout >= 0 ? &tv : NULL);
if (n >= 0) {