Lines Matching +full:way +full:- +full:select
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 the UNIX domain, for on-system communication;
130 Sequenced-packet sockets allow the user to manipulate the
158 of 0), the system will select an appropriate protocol from those
180 create a datagram socket for on-machine use the call might
201 to a socket, processes have no way to reference it and, consequently,
315 binds a socket to a well-known address associated with the service
348 the system will automatically select and bind a name to
350 This is the usual way that local addresses are bound
427 it may supply a buffer for the client socket's name. The value-result
467 specified as a non-zero value if one or more
539 the call will return \-1 and the global value \fIerrno\fP will
548 a value-result fashion, initially containing the size of
576 A \fIselect\fP for reading or writing will return true
587 sockets and/or files. This is done using the \fIselect\fP
597 select(nfds, &readmask, &writemask, &exceptmask, &timeout);
599 \fISelect\fP takes as arguments pointers to three sets, one for
603 are pending; out-of-band data is the only
607 the corresponding argument to the \fIselect\fP should
623 The parameter \fInfds\fP in the \fIselect\fP call specifies the range
638 \fISelect\fP normally returns the number of file descriptors selected;
639 if the \fIselect\fP call returns due to the timeout expiring, then
641 If the \fIselect\fP terminates because of an error or interruption,
642 a \-1 is returned with the error number in \fIerrno\fP,
649 The status of a file descriptor in a select mask may be
651 returns a non-zero value if \fIfd\fP is a member of the set
656 \fIselect\fP can be used, followed by
659 returns a non-zero value, indicating permission to read, then a
663 \fIs2\fP as it is available from each and with a one-second
682 nb = select(FD_SETSIZE, &read_template, (fd_set *) 0, (fd_set *) 0, &wait);
698 In 4.2, the arguments to \fIselect\fP were pointers to integers
705 \fISelect\fP provides a synchronous multiplexing scheme.