Unix and Linux Discussions Tagged with select |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
4 |
4,296 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
6,668 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,076 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
3,064 |
Shell Programming and Scripting |
|
|
|
7 |
2,908 |
Shell Programming and Scripting |
|
|
|
3 |
14,285 |
Shell Programming and Scripting |
|
|
|
3 |
2,662 |
Shell Programming and Scripting |
|
|
|
3 |
2,543 |
Shell Programming and Scripting |
|
|
|
5 |
5,650 |
Shell Programming and Scripting |
|
|
|
4 |
3,443 |
Shell Programming and Scripting |
|
|
|
2 |
3,677 |
Programming |
|
|
|
16 |
10,386 |
Programming |
|
|
|
4 |
2,007 |
Shell Programming and Scripting |
|
|
|
3 |
4,026 |
Shell Programming and Scripting |
|
|
|
20 |
33,444 |
Shell Programming and Scripting |
|
|
|
11 |
9,596 |
Shell Programming and Scripting |
|
|
|
2 |
2,486 |
Programming |
|
|
|
2 |
6,911 |
UNIX and Linux Applications |
|
|
|
1 |
40,020 |
UNIX and Linux Applications |
|
|
|
1 |
3,786 |
Programming |
|
|
|
0 |
4,331 |
OS X Support RSS |
|
|
|
1 |
15,641 |
Programming |
|
|
|
29 |
13,418 |
Shell Programming and Scripting |
|
|
|
3 |
3,336 |
Shell Programming and Scripting |
|
|
|
13 |
18,707 |
Programming |
|
|
|
4 |
3,605 |
Shell Programming and Scripting |
|
|
|
3 |
10,760 |
Web Development |
|
|
|
1 |
6,540 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
5,932 |
Shell Programming and Scripting |
|
|
|
0 |
4,031 |
Programming |
|
|
|
6 |
2,438 |
Shell Programming and Scripting |
|
|
|
2 |
11,263 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
3,465 |
Shell Programming and Scripting |
|
|
|
5 |
16,225 |
Shell Programming and Scripting |
|
|
|
0 |
7,779 |
Shell Programming and Scripting |
|
|
|
2 |
6,700 |
Shell Programming and Scripting |
|
|
|
8 |
5,680 |
Shell Programming and Scripting |
|
|
|
0 |
1,216 |
Software Releases - RSS News |
|
|
|
5 |
3,446 |
Shell Programming and Scripting |
|
|
|
14 |
21,906 |
UNIX for Dummies Questions & Answers |
select.h(3HEAD) Headers select.h(3HEAD)
NAME
select.h, select - select types
SYNOPSIS
#include <sys/select.h>
DESCRIPTION
The <sys/select.h> header defines the timeval structure, which includes the following members:
time_t tv_sec /* seconds */
suseconds_t tv_usec /* microseconds */
The time_t and suseconds_t types are defined as described in <sys/types.h>. See types.h(3HEAD).
The sigset_t type is defined as described in signal.h(3HEAD).
The timespec structure is defined as described in <time.h>. See time.h(3HEAD).
The <sys/select.h> header defines the fd_set type as a structure.
The following is defined as a macro:
FD_SETSIZE Maximum number of file descriptors in an fd_set structure.
Inclusion of the <sys/select.h> header can make visible all symbols from the headers <signal.h>, <sys/time.h>, and <time.h>.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Interface Stability |Standard |
+-----------------------------+-----------------------------+
SEE ALSO
select(3C), signal.h(3HEAD), time.h(3HEAD), types.h(3HEAD), attributes(5), standards(5)
SunOS 5.10 10 Sep 2004 select.h(3HEAD)