4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00

Patch suggested by Eric Fifer <EFifer@sanwaint.com>

* poll.cc (poll): Fix erroneous negations.
This commit is contained in:
Corinna Vinschen 2000-07-17 17:42:00 +00:00
parent b0d5cd02dc
commit 17811f7bbe
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
Mon Jul 17 19:39:00 2000 Corinna Vinschen <corinna@vinschen.de>
Patch suggested by Eric Fifer <EFifer@sanwaint.com>
* poll.cc (poll): Fix erroneous negations.
Mon Jul 17 17:56:00 2000 Corinna Vinschen <corinna@vinschen.de>
* environ.cc (setenv): Use __cygwin_environ instead of

View File

@ -51,11 +51,11 @@ poll (struct pollfd *fds, unsigned int nfds, int timeout)
else
{
fds[i].revents = 0;
if (!FD_ISSET (fds[i].fd, &read_fds))
if (FD_ISSET (fds[i].fd, &read_fds))
fds[i].revents |= POLLIN;
if (!FD_ISSET (fds[i].fd, &write_fds))
if (FD_ISSET (fds[i].fd, &write_fds))
fds[i].revents |= POLLOUT;
if (!FD_ISSET (fds[i].fd, &except_fds))
if (FD_ISSET (fds[i].fd, &except_fds))
fds[i].revents |= POLLPRI;
}
}