1 .\"     $NetBSD: select.2,v 1.5 1995/06/27 22:32:28 cgd Exp $
 
   3 .\" Copyright (c) 1983, 1991, 1993
 
   4 .\"     The Regents of the University of California.  All rights reserved.
 
   6 .\" Redistribution and use in source and binary forms, with or without
 
   7 .\" modification, are permitted provided that the following conditions
 
   9 .\" 1. Redistributions of source code must retain the above copyright
 
  10 .\"    notice, this list of conditions and the following disclaimer.
 
  11 .\" 2. Redistributions in binary form must reproduce the above copyright
 
  12 .\"    notice, this list of conditions and the following disclaimer in the
 
  13 .\"    documentation and/or other materials provided with the distribution.
 
  14 .\" 3. All advertising materials mentioning features or use of this software
 
  15 .\"    must display the following acknowledgement:
 
  16 .\"     This product includes software developed by the University of
 
  17 .\"     California, Berkeley and its contributors.
 
  18 .\" 4. Neither the name of the University nor the names of its contributors
 
  19 .\"    may be used to endorse or promote products derived from this software
 
  20 .\"    without specific prior written permission.
 
  22 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
  23 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
  24 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
  25 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
  26 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
  27 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
  28 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
  29 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
  30 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
  31 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
  34 .\"     @(#)select.2    8.2 (Berkeley) 3/25/94
 
  41 .Nd synchronous I/O multiplexing
 
  43 .Fd #include <sys/select.h>
 
  45 .Fd #include <sys/types.h>
 
  46 .Fd #include <sys/time.h>
 
  47 .Fd #include <unistd.h>
 
  49 .Fn select "int nfds" "fd_set *readfds" "fd_set *writefds" "fd_set *exceptfds" "struct timeval *timeout"
 
  52 .Fn FD_ISSET fd &fdset
 
  53 .Fn FD_COPY &fdset_orig &fdset_copy
 
  57 examines the I/O descriptor sets whose addresses are passed in
 
  62 to see if some of their descriptors
 
  63 are ready for reading, are ready for writing, or have an exceptional
 
  64 condition pending, respectively.
 
  67 descriptors are checked in each set;
 
  68 i.e., the descriptors from 0 through
 
  70 in the descriptor sets are examined.  (Example: If you have set two file descriptors "4" and "17",
 
  72 should  not be "2", but rather "17 + 1" or "18".)
 
  75 replaces the given descriptor sets
 
  76 with subsets consisting of those descriptors that are ready
 
  77 for the requested operation.
 
  79 returns the total number of ready descriptors in all the sets.
 
  81 The descriptor sets are stored as bit fields in arrays of integers.
 
  82 The following macros are provided for manipulating such descriptor sets:
 
  84 initializes a descriptor set
 
  88 includes a particular descriptor
 
  97 .Fn FD_ISSET fd &fdset
 
 103 .Fn FD_COPY &fdset_orig &fdset_copy
 
 104 replaces an already allocated 
 
 106 file descriptor set with a copy of
 
 108 The behavior of these macros is undefined if
 
 109 a descriptor value is less than zero or greater than or equal to
 
 111 which is normally at least equal
 
 112 to the maximum number of descriptors supported by the system.
 
 116 is a non-nil pointer, it specifies a maximum interval to wait for the
 
 117 selection to complete.  If 
 
 119 is a nil pointer, the select blocks indefinitely.  To effect a poll, the
 
 121 argument should be non-nil, pointing to a zero-valued timeval structure.
 
 125 and may be reused on subsequent calls, however it is good style to re-initialize
 
 126 it before each invocation of
 
 134 may be given as nil pointers if no descriptors are of interest.
 
 137 returns the number of ready descriptors that are contained in
 
 139 or -1 if an error occurred.
 
 140 If the time limit expires,
 
 145 returns with an error,
 
 146 including one due to an interrupted call,
 
 147 the descriptor sets will be unmodified.
 
 154 One of the descriptor sets specified an invalid descriptor.
 
 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.  One of its components is
 
 160 negative or too large.
 
 165 .Xr getdtablesize 2 ,
 
 172 Although the provision of
 
 174 was intended to allow user programs to be written independent
 
 175 of the kernel limit on the number of open files, the dimension
 
 176 of a sufficiently large bit field for select remains a problem.
 
 179 (currently 1024) is somewhat smaller than
 
 180 the current kernel limit to the number of open files.
 
 181 However, in order to accommodate programs which might potentially
 
 182 use a larger number of open files with select, it is possible
 
 183 to increase this size within a program by providing
 
 184 a larger definition of
 
 186 before the inclusion of
 
 190 should probably have been designed to return the time remaining from the
 
 191 original timeout, if any, by modifying the time value in place.
 
 192 However, it is unlikely this semantic will ever be implemented, as the
 
 193 change would cause source code compatibility problems.
 
 194 In general it is unwise to assume that the timeout value will be
 
 197 call, and the caller should reinitialize it on each invocation.
 
 201 function call appeared in