Changes.old: Add missing piece to 5.00 changelog
[man-pages.git] / man2 / poll.2
blob0b023e0a5f8938ac17941647a2392f4a5efb0438
1 .\" Copyright (C) 1997 Andries Brouwer (aeb@cwi.nl)
2 .\" and Copyright (C) 2006, Michael Kerrisk <mtk.manpages@gmail.com>
3 .\"
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\" %%%LICENSE_END
25 .\"
26 .\" Additions from Richard Gooch <rgooch@atnf.CSIRO.AU> and aeb, 971207
27 .\" 2006-03-13, mtk, Added ppoll() + various other rewordings
28 .\" 2006-07-01, mtk, Added POLLRDHUP + various other wording and
29 .\"     formatting changes.
30 .\"
31 .TH POLL 2 2019-03-06 "Linux" "Linux Programmer's Manual"
32 .SH NAME
33 poll, ppoll \- wait for some event on a file descriptor
34 .SH SYNOPSIS
35 .nf
36 .B #include <poll.h>
37 .PP
38 .BI "int poll(struct pollfd *" fds ", nfds_t " nfds ", int " timeout );
40 .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
41 .B #include <signal.h>
42 .B #include <poll.h>
43 .PP
44 .BI "int ppoll(struct pollfd *" fds ", nfds_t " nfds ", "
45 .BI "        const struct timespec *" tmo_p ", const sigset_t *" sigmask );
46 .fi
47 .SH DESCRIPTION
48 .BR poll ()
49 performs a similar task to
50 .BR select (2):
51 it waits for one of a set of file descriptors to become ready
52 to perform I/O.
53 .PP
54 The set of file descriptors to be monitored is specified in the
55 .I fds
56 argument, which is an array of structures of the following form:
57 .PP
58 .in +4n
59 .EX
60 struct pollfd {
61     int   fd;         /* file descriptor */
62     short events;     /* requested events */
63     short revents;    /* returned events */
65 .EE
66 .in
67 .PP
68 The caller should specify the number of items in the
69 .I fds
70 array in
71 .IR nfds .
72 .PP
73 The field
74 .I fd
75 contains a file descriptor for an open file.
76 If this field is negative, then the corresponding
77 .I events
78 field is ignored and the
79 .I revents
80 field returns zero.
81 (This provides an easy way of ignoring a
82 file descriptor for a single
83 .BR poll ()
84 call: simply negate the
85 .I fd
86 field.
87 Note, however, that this technique can't be used to ignore file descriptor 0.)
88 .PP
89 The field
90 .I events
91 is an input parameter, a bit mask specifying the events the application
92 is interested in for the file descriptor
93 .IR fd .
94 This field may be specified as zero,
95 in which case the only events that can be returned in
96 .I revents
97 are
98 .BR POLLHUP ,
99 .BR POLLERR ,
101 .B POLLNVAL
102 (see below).
104 The field
105 .I revents
106 is an output parameter, filled by the kernel with the events that
107 actually occurred.
108 The bits returned in
109 .I revents
110 can include any of those specified in
111 .IR events ,
112 or one of the values
113 .BR POLLERR ,
114 .BR POLLHUP ,
116 .BR POLLNVAL .
117 (These three bits are meaningless in the
118 .I events
119 field, and will be set in the
120 .I revents
121 field whenever the corresponding condition is true.)
123 If none of the events requested (and no error) has occurred for any
124 of the file descriptors, then
125 .BR poll ()
126 blocks until one of the events occurs.
129 .I timeout
130 argument specifies the number of milliseconds that
131 .BR poll ()
132 should block waiting for a file descriptor to become ready.
133 The call will block until either:
134 .IP * 3
135 a file descriptor becomes ready;
136 .IP *
137 the call is interrupted by a signal handler; or
138 .IP *
139 the timeout expires.
141 Note that the
142 .I timeout
143 interval will be rounded up to the system clock granularity,
144 and kernel scheduling delays mean that the blocking interval
145 may overrun by a small amount.
146 Specifying a negative value in
147 .I timeout
148 means an infinite timeout.
149 Specifying a
150 .I timeout
151 of zero causes
152 .BR poll ()
153 to return immediately, even if no file descriptors are ready.
155 The bits that may be set/returned in
156 .I events
158 .I revents
159 are defined in \fI<poll.h>\fP:
161 .B POLLIN
162 There is data to read.
164 .B POLLPRI
165 There is some exceptional condition on the file descriptor.
166 Possibilities include:
168 .IP * 3
169 There is out-of-band data on a TCP socket (see
170 .BR tcp (7)).
171 .IP *
172 A pseudoterminal master in packet mode has seen a state change on the slave
173 (see
174 .BR ioctl_tty (2)).
175 .IP *
177 .I cgroup.events
178 file has been modified (see
179 .BR cgroups (7)).
182 .B POLLOUT
183 Writing is now possible, though a write larger that the available space
184 in a socket or pipe will still block (unless
185 .B O_NONBLOCK
186 is set).
188 .BR POLLRDHUP " (since Linux 2.6.17)"
189 Stream socket peer closed connection,
190 or shut down writing half of connection.
192 .B _GNU_SOURCE
193 feature test macro must be defined
194 (before including
195 .I any
196 header files)
197 in order to obtain this definition.
199 .B POLLERR
200 Error condition (only returned in
201 .IR revents ;
202 ignored in
203 .IR events ).
204 This bit is also set for a file descriptor referring
205 to the write end of a pipe when the read end has been closed.
207 .B POLLHUP
208 Hang up (only returned in
209 .IR revents ;
210 ignored in
211 .IR events ).
212 Note that when reading from a channel such as a pipe or a stream socket,
213 this event merely indicates that the peer closed its end of the channel.
214 Subsequent reads from the channel will return 0 (end of file)
215 only after all outstanding data in the channel has been consumed.
217 .B POLLNVAL
218 Invalid request:
219 .I fd
220 not open (only returned in
221 .IR revents ;
222 ignored in
223 .IR events ).
225 When compiling with
226 .B _XOPEN_SOURCE
227 defined, one also has the following,
228 which convey no further information beyond the bits listed above:
230 .B POLLRDNORM
231 Equivalent to
232 .BR POLLIN .
234 .B POLLRDBAND
235 Priority band data can be read (generally unused on Linux).
236 .\" POLLRDBAND is used in the DECnet protocol.
238 .B POLLWRNORM
239 Equivalent to
240 .BR POLLOUT .
242 .B POLLWRBAND
243 Priority data may be written.
245 Linux also knows about, but does not use
246 .BR POLLMSG .
247 .SS ppoll()
248 The relationship between
249 .BR poll ()
251 .BR ppoll ()
252 is analogous to the relationship between
253 .BR select (2)
255 .BR pselect (2):
256 like
257 .BR pselect (2),
258 .BR ppoll ()
259 allows an application to safely wait until either a file descriptor
260 becomes ready or until a signal is caught.
262 Other than the difference in the precision of the
263 .I timeout
264 argument, the following
265 .BR ppoll ()
266 call:
268 .in +4n
270 ready = ppoll(&fds, nfds, tmo_p, &sigmask);
274 is equivalent to
275 .I atomically
276 executing the following calls:
278 .in +4n
280 sigset_t origmask;
281 int timeout;
283 timeout = (tmo_p == NULL) ? \-1 :
284           (tmo_p\->tv_sec * 1000 + tmo_p\->tv_nsec / 1000000);
285 pthread_sigmask(SIG_SETMASK, &sigmask, &origmask);
286 ready = poll(&fds, nfds, timeout);
287 pthread_sigmask(SIG_SETMASK, &origmask, NULL);
291 See the description of
292 .BR pselect (2)
293 for an explanation of why
294 .BR ppoll ()
295 is necessary.
297 If the
298 .I sigmask
299 argument is specified as NULL, then
300 no signal mask manipulation is performed
301 (and thus
302 .BR ppoll ()
303 differs from
304 .BR poll ()
305 only in the precision of the
306 .I timeout
307 argument).
310 .I tmo_p
311 argument specifies an upper limit on the amount of time that
312 .BR ppoll ()
313 will block.
314 This argument is a pointer to a structure of the following form:
316 .in +4n
318 struct timespec {
319     long    tv_sec;         /* seconds */
320     long    tv_nsec;        /* nanoseconds */
326 .I tmo_p
327 is specified as NULL, then
328 .BR ppoll ()
329 can block indefinitely.
330 .SH RETURN VALUE
331 On success, a positive number is returned; this is
332 the number of structures which have nonzero
333 .I revents
334 fields (in other words, those descriptors with events or errors reported).
335 A value of 0 indicates that the call timed out and no file
336 descriptors were ready.
337 On error, \-1 is returned, and
338 .I errno
339 is set appropriately.
340 .SH ERRORS
342 .B EFAULT
343 The array given as argument was not contained in the calling program's
344 address space.
346 .B EINTR
347 A signal occurred before any requested event; see
348 .BR signal (7).
350 .B EINVAL
352 .I nfds
353 value exceeds the
354 .B RLIMIT_NOFILE
355 value.
357 .B ENOMEM
358 There was no space to allocate file descriptor tables.
359 .SH VERSIONS
361 .BR poll ()
362 system call was introduced in Linux 2.1.23.
363 On older kernels that lack this system call,
364 .\" library call was introduced in libc 5.4.28
365 the glibc (and the old Linux libc)
366 .BR poll ()
367 wrapper function provides emulation using
368 .BR select (2).
371 .BR ppoll ()
372 system call was added to Linux in kernel 2.6.16.
374 .BR ppoll ()
375 library call was added in glibc 2.4.
376 .SH CONFORMING TO
377 .BR poll ()
378 conforms to POSIX.1-2001 and POSIX.1-2008.
379 .BR ppoll ()
380 is Linux-specific.
381 .\" NetBSD 3.0 has a pollts() which is like Linux ppoll().
382 .SH NOTES
383 The operation of
384 .BR poll ()
386 .BR ppoll ()
387 is not affected by the
388 .BR O_NONBLOCK
389 flag.
391 On some other UNIX systems,
392 .\" Darwin, according to a report by Jeremy Sequoia, relayed by Josh Triplett
393 .BR poll ()
394 can fail with the error
395 .B EAGAIN
396 if the system fails to allocate kernel-internal resources, rather than
397 .B ENOMEM
398 as Linux does.
399 POSIX permits this behavior.
400 Portable programs may wish to check for
401 .B EAGAIN
402 and loop, just as with
403 .BR EINTR .
405 Some implementations define the nonstandard constant
406 .B INFTIM
407 with the value \-1 for use as a
408 .IR timeout
410 .BR poll ().
411 This constant is not provided in glibc.
413 For a discussion of what may happen if a file descriptor being monitored by
414 .BR poll ()
415 is closed in another thread, see
416 .BR select (2).
417 .SS C library/kernel differences
418 The Linux
419 .BR ppoll ()
420 system call modifies its
421 .I tmo_p
422 argument.
423 However, the glibc wrapper function hides this behavior
424 by using a local variable for the timeout argument that
425 is passed to the system call.
426 Thus, the glibc
427 .BR ppoll ()
428 function does not modify its
429 .I tmo_p
430 argument.
432 The raw
433 .BR ppoll ()
434 system call has a fifth argument,
435 .IR "size_t sigsetsize" ,
436 which specifies the size in bytes of the
437 .IR sigmask
438 argument.
439 The glibc
440 .BR ppoll ()
441 wrapper function specifies this argument as a fixed value
442 (equal to
443 .IR sizeof(kernel_sigset_t) ).
445 .BR sigprocmask (2)
446 for a discussion on the differences between the kernel and the libc
447 notion of the sigset.
448 .SH BUGS
449 See the discussion of spurious readiness notifications under the
450 BUGS section of
451 .BR select (2).
452 .SH SEE ALSO
453 .BR restart_syscall (2),
454 .BR select (2),
455 .BR select_tut (2),
456 .BR epoll (7),
457 .BR time (7)