2 .\" Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
4 .\" @APPLE_LICENSE_HEADER_START@
6 .\" This file contains Original Code and/or Modifications of Original Code
7 .\" as defined in and that are subject to the Apple Public Source License
8 .\" Version 2.0 (the 'License'). You may not use this file except in
9 .\" compliance with the License. Please obtain a copy of the License at
10 .\" http://www.opensource.apple.com/apsl/ and read it before using this
13 .\" The Original Code and all software distributed under the License are
14 .\" distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 .\" EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 .\" INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 .\" FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 .\" Please see the License for the specific language governing rights and
19 .\" limitations under the License.
21 .\" @APPLE_LICENSE_HEADER_END@
24 .\" Copyright (c) 1996 Charles M. Hannum. All rights reserved.
26 .\" Redistribution and use in source and binary forms, with or without
27 .\" modification, are permitted provided that the following conditions
29 .\" 1. Redistributions of source code must retain the above copyright
30 .\" notice, this list of conditions and the following disclaimer.
31 .\" 2. Redistributions in binary form must reproduce the above copyright
32 .\" notice, this list of conditions and the following disclaimer in the
33 .\" documentation and/or other materials provided with the distribution.
34 .\" 3. All advertising materials mentioning features or use of this software
35 .\" must display the following acknowledgement:
36 .\" This product includes software developed by Charles M. Hannum.
37 .\" 4. The name of the author may not be used to endorse or promote products
38 .\" derived from this software without specific prior written permission.
40 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
41 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
42 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
43 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
44 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
46 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
47 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
48 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
49 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
56 .Nd synchronous I/O multiplexing
61 .Fa "struct pollfd fds[]"
67 examines a set of file descriptors
68 to see if some of them are ready for I/O
69 or if certain events have occurred on them.
72 argument is a pointer to an array of pollfd structures,
77 argument specifies the size of the
82 int fd; /* file descriptor */
83 short events; /* events to look for */
84 short revents; /* events returned */
91 .Bl -tag -width XXXPOLLWRNORM
93 File descriptor to poll.
95 Events to poll for. (See below.)
97 Events which may occur or have occurred. (See below.)
100 The event bitmasks in
104 have the following bits:
105 .Bl -tag -width XXXPOLLWRNORM
108 An exceptional condition has occurred on the device or socket.
109 This flag is output only, and ignored if present in the input
114 The device or socket has been disconnected.
115 This flag is output only,
116 and ignored if present in the input
119 Note that POLLHUP and POLLOUT
120 are mutually exclusive and should never be present in the
122 bitmask at the same time.
125 Data other than high priority data may be read without blocking.
126 This is equivalent to ( POLLRDNORM | POLLRDBAND ).
129 The file descriptor is not open.
130 This flag is output only, and ignored if present in the input
135 Normal data may be written without blocking.
136 This is equivalent to POLLWRNORM.
139 High priority data may be read without blocking.
142 Priority data may be read without blocking.
145 Normal data may be read without blocking.
148 Priority data may be written without blocking.
151 Normal data may be written without blocking.
154 The distinction between normal, priority, and high-priority data
155 is specific to particular file types or devices.
159 is greater than zero,
160 it specifies a maximum interval (in milliseconds)
161 to wait for any file descriptor to become ready.
166 will return without blocking. If the value of
168 is -1, the poll blocks indefinitely.
171 returns the number of descriptors that are ready for I/O,
172 or -1 if an error occurred.
173 If the time limit expires,
178 returns with an error,
179 including one due to an interrupted call,
182 array will be unmodified and the global variable
184 will be set to indicate the error.
191 Allocation of internal data structures fails.
192 A subsequent request may succeed.
196 points outside the process's allocated address space.
199 A signal is delivered before the time limit expires
200 and before any of the selected events occurs.
205 argument is greater than OPEN_MAX or the
207 argument is less than -1.
212 system call currently does not support devices.
225 function call appeared in