xref: /freebsd-12.1/lib/libc/sys/select.2 (revision 7d0fc2f4)
1.\" Copyright (c) 1983, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
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.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by the University of
15.\"	California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)select.2	8.2 (Berkeley) 3/25/94
33.\" $FreeBSD$
34.\"
35.Dd November 17, 2002
36.Dt SELECT 2
37.Os
38.Sh NAME
39.Nm select
40.Nd synchronous I/O multiplexing
41.Sh LIBRARY
42.Lb libc
43.Sh SYNOPSIS
44.In sys/select.h
45.Ft int
46.Fn select "int nfds" "fd_set *readfds" "fd_set *writefds" "fd_set *exceptfds" "struct timeval *timeout"
47.Fn FD_SET fd &fdset
48.Fn FD_CLR fd &fdset
49.Fn FD_ISSET fd &fdset
50.Fn FD_ZERO &fdset
51.Sh DESCRIPTION
52The
53.Fn select
54system call
55examines the I/O descriptor sets whose addresses are passed in
56.Fa readfds ,
57.Fa writefds ,
58and
59.Fa exceptfds
60to see if some of their descriptors
61are ready for reading, are ready for writing, or have an exceptional
62condition pending, respectively.
63The only exceptional condition detectable is out-of-band
64data received on a socket.
65The first
66.Fa nfds
67descriptors are checked in each set;
68i.e., the descriptors from 0 through
69.Fa nfds Ns No -1
70in the descriptor sets are examined.
71On return,
72.Fn select
73replaces the given descriptor sets
74with subsets consisting of those descriptors that are ready
75for the requested operation.
76The
77.Fn select
78system call
79returns the total number of ready descriptors in all the sets.
80.Pp
81The descriptor sets are stored as bit fields in arrays of integers.
82The following macros are provided for manipulating such descriptor sets:
83.Fn FD_ZERO &fdset
84initializes a descriptor set
85.Fa fdset
86to the null set.
87.Fn FD_SET fd &fdset
88includes a particular descriptor
89.Fa fd
90in
91.Fa fdset .
92.Fn FD_CLR fd &fdset
93removes
94.Fa fd
95from
96.Fa fdset .
97.Fn FD_ISSET fd &fdset
98is non-zero if
99.Fa fd
100is a member of
101.Fa fdset ,
102zero otherwise.
103The behavior of these macros is undefined if
104a descriptor value is less than zero or greater than or equal to
105.Dv FD_SETSIZE ,
106which is normally at least equal
107to the maximum number of descriptors supported by the system.
108.Pp
109If
110.Fa timeout
111is a non-nil pointer, it specifies the maximum interval to wait for the
112selection to complete.
113System activity can lengthen the interval by
114an indeterminate amount.
115.Pp
116If
117.Fa timeout
118is a nil pointer, the select blocks indefinitely.
119.Pp
120To effect a poll, the
121.Fa timeout
122argument should be non-nil, pointing to a zero-valued timeval structure.
123.Pp
124Any of
125.Fa readfds ,
126.Fa writefds ,
127and
128.Fa exceptfds
129may be given as nil pointers if no descriptors are of interest.
130.Sh RETURN VALUES
131The
132.Fn select
133system call
134returns the number of ready descriptors that are contained in
135the descriptor sets,
136or -1 if an error occurred.
137If the time limit expires,
138.Fn select
139returns 0.
140If
141.Fn select
142returns with an error,
143including one due to an interrupted system call,
144the descriptor sets will be unmodified.
145.Sh ERRORS
146An error return from
147.Fn select
148indicates:
149.Bl -tag -width Er
150.It Bq Er EBADF
151One of the descriptor sets specified an invalid descriptor.
152.It Bq Er EFAULT
153One of the arguments
154.Fa readfds , writefds , exceptfds ,
155or
156.Fa timeout
157points to an invalid address.
158.It Bq Er EINTR
159A signal was delivered before the time limit expired and
160before any of the selected events occurred.
161.It Bq Er EINVAL
162The specified time limit is invalid.
163One of its components is
164negative or too large.
165.It Bq Er EINVAL
166The
167.Fa nfds
168argument
169was invalid.
170.El
171.Sh SEE ALSO
172.Xr accept 2 ,
173.Xr connect 2 ,
174.Xr getdtablesize 2 ,
175.Xr gettimeofday 2 ,
176.Xr kqueue 2 ,
177.Xr poll 2 ,
178.Xr read 2 ,
179.Xr recv 2 ,
180.Xr send 2 ,
181.Xr write 2 ,
182.Xr clocks 7
183.Sh NOTES
184The default size of
185.Dv FD_SETSIZE
186is currently 1024.
187In order to accommodate programs which might potentially
188use a larger number of open files with
189.Fn select ,
190it is possible
191to increase this size by having the program define
192.Dv FD_SETSIZE
193before the inclusion of any header which includes
194.In sys/types.h .
195.Pp
196If
197.Fa nfds
198is greater than the number of open files,
199.Fn select
200is not guaranteed to examine the unused file descriptors.
201For historical
202reasons,
203.Fn select
204will always examine the first 256 descriptors.
205.Sh BUGS
206.St -susv2
207allows systems to modify the original timeout in place.
208Thus, it is unwise to assume that the timeout value will be unmodified
209by the
210.Fn select
211system call.
212.Sh STANDARDS
213The
214.Fn select
215system call and
216.Fn FD_CLR ,
217.Fn FD_ISSET ,
218.Fn FD_SET ,
219and
220.Fn FD_ZERO
221macros conform with
222.St -p1003.1-2001 .
223.Sh HISTORY
224The
225.Fn select
226system call appeared in
227.Bx 4.2 .
228