1 .\" Copyright (c) 1983, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" @(#)select.2 8.2 (Berkeley) 3/25/94
36 .Nd synchronous I/O multiplexing
42 .Fn select "int nfds" "fd_set *readfds" "fd_set *writefds" "fd_set *exceptfds" "struct timeval *timeout"
45 .Fn FD_ISSET fd &fdset
51 examines the I/O descriptor sets whose addresses are passed in
56 to see if some of their descriptors
57 are ready for reading, are ready for writing, or have an exceptional
58 condition pending, respectively.
59 The only exceptional condition detectable is out-of-band
60 data received on a socket.
63 descriptors are checked in each set;
64 i.e., the descriptors from 0 through
66 in the descriptor sets are examined.
69 replaces the given descriptor sets
70 with subsets consisting of those descriptors that are ready
71 for the requested operation.
75 returns the total number of ready descriptors in all the sets.
77 The descriptor sets are stored as bit fields in arrays of integers.
78 The following macros are provided for manipulating such descriptor sets:
80 initializes a descriptor set
84 includes a particular descriptor
93 .Fn FD_ISSET fd &fdset
99 The behavior of these macros is undefined if
100 a descriptor value is less than zero or greater than or equal to
102 which is normally at least equal
103 to the maximum number of descriptors supported by the system.
107 is not a null pointer, it specifies the maximum interval to wait for the
108 selection to complete.
109 System activity can lengthen the interval by
110 an indeterminate amount.
114 is a null pointer, the select blocks indefinitely.
116 To effect a poll, the
118 argument should not be a null pointer,
119 but it should point to a zero-valued timeval structure.
126 may be given as null pointers if no descriptors are of interest.
131 returns the number of ready descriptors that are contained in
133 or -1 if an error occurred.
134 If the time limit expires,
139 returns with an error,
140 including one due to an interrupted system call,
141 the descriptor sets will be unmodified.
148 One of the descriptor sets specified an invalid descriptor.
151 .Fa readfds , writefds , exceptfds ,
154 points to an invalid address.
156 A signal was delivered before the time limit expired and
157 before any of the selected events occurred.
159 The specified time limit is invalid.
160 One of its components is
161 negative or too large.
171 .Xr getdtablesize 2 ,
184 In order to accommodate programs which might potentially
185 use a larger number of open files with
188 to increase this size by having the program define
190 before the inclusion of any header which includes
195 is greater than the number of open files,
197 is not guaranteed to examine the unused file descriptors.
201 will always examine the first 256 descriptors.
216 system call appeared in
220 allows systems to modify the original timeout in place.
221 Thus, it is unwise to assume that the timeout value will be unmodified
226 does not modify the return value, which can cause problems for applications
227 ported from other systems.