2000-07-04 18:58:49 +02:00
|
|
|
/* poll.cc. Implements poll(2) via usage of select(2) call.
|
|
|
|
|
|
|
|
Copyright 2000 Cygnus Solutions.
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2000-08-12 07:39:41 +02:00
|
|
|
#include "winsup.h"
|
2000-09-08 04:56:55 +02:00
|
|
|
#include <sys/time.h>
|
2000-08-02 18:28:18 +02:00
|
|
|
#include <sys/poll.h>
|
2000-08-11 22:34:24 +02:00
|
|
|
#include <errno.h>
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "fhandler.h"
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "dtable.h"
|
2000-08-22 05:58:47 +02:00
|
|
|
#include "cygerrno.h"
|
2000-07-04 18:58:49 +02:00
|
|
|
|
|
|
|
extern "C"
|
|
|
|
int
|
|
|
|
poll (struct pollfd *fds, unsigned int nfds, int timeout)
|
|
|
|
{
|
|
|
|
int max_fd = 0;
|
2000-08-11 22:34:24 +02:00
|
|
|
fd_set *open_fds, *read_fds, *write_fds, *except_fds;
|
2000-07-04 18:58:49 +02:00
|
|
|
struct timeval tv = { timeout / 1000, (timeout % 1000) * 1000 };
|
|
|
|
|
2000-08-11 22:34:24 +02:00
|
|
|
for (unsigned int i = 0; i < nfds; ++i)
|
|
|
|
if (fds[i].fd > max_fd)
|
|
|
|
max_fd = fds[i].fd;
|
|
|
|
|
|
|
|
size_t fds_size = howmany(max_fd + 1, NFDBITS) * sizeof (fd_mask);
|
|
|
|
|
|
|
|
open_fds = (fd_set *) alloca (fds_size);
|
|
|
|
read_fds = (fd_set *) alloca (fds_size);
|
|
|
|
write_fds = (fd_set *) alloca (fds_size);
|
|
|
|
except_fds = (fd_set *) alloca (fds_size);
|
|
|
|
|
|
|
|
if (!open_fds || !read_fds || !write_fds || !except_fds)
|
|
|
|
{
|
|
|
|
set_errno (ENOMEM);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset (open_fds, 0, fds_size);
|
|
|
|
memset (read_fds, 0, fds_size);
|
|
|
|
memset (write_fds, 0, fds_size);
|
|
|
|
memset (except_fds, 0, fds_size);
|
2000-07-04 18:58:49 +02:00
|
|
|
|
|
|
|
for (unsigned int i = 0; i < nfds; ++i)
|
2000-08-12 06:48:44 +02:00
|
|
|
if (!fdtab.not_open (fds[i].fd))
|
2000-07-04 18:58:49 +02:00
|
|
|
{
|
2000-09-03 06:16:35 +02:00
|
|
|
FD_SET (fds[i].fd, open_fds);
|
|
|
|
if (fds[i].events & POLLIN)
|
|
|
|
FD_SET (fds[i].fd, read_fds);
|
|
|
|
if (fds[i].events & POLLOUT)
|
|
|
|
FD_SET (fds[i].fd, write_fds);
|
|
|
|
if (fds[i].events & POLLPRI)
|
|
|
|
FD_SET (fds[i].fd, except_fds);
|
2000-07-04 18:58:49 +02:00
|
|
|
}
|
|
|
|
|
2000-08-11 22:34:24 +02:00
|
|
|
int ret = cygwin_select (max_fd + 1, read_fds, write_fds, except_fds,
|
2000-09-03 06:16:35 +02:00
|
|
|
timeout < 0 ? NULL : &tv);
|
2000-07-04 18:58:49 +02:00
|
|
|
|
2000-08-11 14:51:47 +02:00
|
|
|
for (unsigned int i = 0; i < nfds; ++i)
|
|
|
|
{
|
2000-08-11 22:34:24 +02:00
|
|
|
if (!FD_ISSET (fds[i].fd, open_fds))
|
2000-09-03 06:16:35 +02:00
|
|
|
fds[i].revents = POLLNVAL;
|
2000-08-12 06:48:44 +02:00
|
|
|
else if (fdtab.not_open(fds[i].fd))
|
2000-09-03 06:16:35 +02:00
|
|
|
fds[i].revents = POLLHUP;
|
2000-08-11 14:51:47 +02:00
|
|
|
else if (ret < 0)
|
2000-09-03 06:16:35 +02:00
|
|
|
fds[i].revents = POLLERR;
|
2000-08-11 14:51:47 +02:00
|
|
|
else
|
2000-09-03 06:16:35 +02:00
|
|
|
{
|
|
|
|
fds[i].revents = 0;
|
|
|
|
if (FD_ISSET (fds[i].fd, read_fds))
|
|
|
|
fds[i].revents |= POLLIN;
|
|
|
|
if (FD_ISSET (fds[i].fd, write_fds))
|
|
|
|
fds[i].revents |= POLLOUT;
|
|
|
|
if (FD_ISSET (fds[i].fd, except_fds))
|
|
|
|
fds[i].revents |= POLLPRI;
|
|
|
|
}
|
2000-08-11 14:51:47 +02:00
|
|
|
}
|
2000-07-04 18:58:49 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|