OpenBSD manual page server

Manual Page Search Parameters

POLL(2) System Calls Manual POLL(2)

pollsynchronous I/O multiplexing

#include <poll.h>

int
poll(struct pollfd *fds, nfds_t nfds, int timeout);

() provides a mechanism for multiplexing I/O across a set of file descriptors. It is similar in function to select(2). Unlike select(2), however, it is possible to only pass in data corresponding to the file descriptors for which events are wanted. This makes poll() more efficient than select(2) in most cases.

The arguments are as follows:

fds
Points to an array of pollfd structures, which are defined as:
struct pollfd {
	int fd;
	short events;
	short revents;
};

The fd member is an open file descriptor. If fd is -1, the pollfd structure is considered unused, and revents will be cleared.

The events and revents members are bitmasks of conditions to monitor and conditions found, respectively.

nfds
An unsigned integer specifying the number of pollfd structures in the array.
timeout
Maximum interval to wait for the poll to complete, in milliseconds. If this value is 0, () will return immediately. If this value is INFTIM (-1), poll() will block indefinitely until a condition is found.

The calling process sets the events bitmask and () sets the revents bitmask. Each call to poll() resets the revents bitmask for accuracy. The condition flags in the bitmasks are defined as:

Data other than high-priority data may be read without blocking.
Normal data may be read without blocking.
Priority data may be read without blocking.
Same as POLLRDNORM. This flag is provided for source code compatibility with older programs and should not be used in new code.
High-priority data may be read without blocking.
Normal data may be written without blocking.
Same as POLLOUT.
Priority data may be written.
An error has occurred on the device or socket. This flag is only valid in the revents bitmask; it is ignored in the events member.
The device or socket has been disconnected. This event and POLLOUT are mutually-exclusive; a descriptor can never be writable if a hangup has occurred. However, this event and POLLIN, POLLRDNORM, POLLRDBAND, or POLLPRI are not mutually-exclusive. This flag is only valid in the revents bitmask; it is ignored in the events member.
The corresponding file descriptor is invalid. This flag is only valid in the revents bitmask; it is ignored in the events member.

The significance and semantics of normal, priority, and high-priority data are device-specific.

In addition to I/O multiplexing, () can be used to generate simple timeouts. This functionality may be achieved by passing a null pointer for fds.

Upon error, poll() returns -1 and sets the global variable errno to indicate the error. If the timeout interval was reached before any events occurred, poll() returns 0. Otherwise, poll() returns the number of file descriptors for which revents is non-zero.

The following example implements a read from the standard input that times out after 60 seconds:

#include <err.h>
#include <poll.h>
#include <stdio.h>
#include <unistd.h>

struct pollfd pfd[1];
char buf[BUFSIZ];
int nfds;

pfd[0].fd = STDIN_FILENO;
pfd[0].events = POLLIN;
nfds = poll(pfd, 1, 60 * 1000);
if (nfds == -1 || (pfd[0].revents & (POLLERR|POLLHUP|POLLNVAL)))
	errx(1, "poll error");
if (nfds == 0)
	errx(1, "time out");
if (read(STDIN_FILENO, buf, sizeof(buf)) == -1)
	errx(1, "read");

poll() will fail if:

[]
fds points outside the process's allocated address space.
[]
poll() caught a signal during the polling process.
[]
nfds was greater than the number of available file descriptors.
[]
The timeout passed to poll() was too large.

getrlimit(2), read(2), select(2), write(2)

The poll() function is compliant with the specification.

A poll() system call appeared in AT&T System V Release 3 UNIX.

The POLLERR and POLLWRBAND flags are accepted but ignored by the kernel.

Because OpenBSD does not implement STREAMS, there is no distinction between some of the fields in the events and revents bitmasks. As a result, the POLLIN, POLLNORM, and POLLRDNORM flags are equivalent.

Internally to the kernel, poll() works poorly if multiple processes wait on the same file descriptor.

July 11, 2007 OpenBSD-5.1