Unix and Linux Discussions Tagged with select |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
4 |
1,403 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
3,089 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
703 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
1,227 |
Shell Programming and Scripting |
|
|
|
7 |
1,859 |
Shell Programming and Scripting |
|
|
|
3 |
12,117 |
Shell Programming and Scripting |
|
|
|
3 |
1,788 |
Shell Programming and Scripting |
|
|
|
3 |
1,914 |
Shell Programming and Scripting |
|
|
|
5 |
4,844 |
Shell Programming and Scripting |
|
|
|
4 |
2,223 |
Shell Programming and Scripting |
|
|
|
2 |
2,957 |
Programming |
|
|
|
16 |
7,144 |
Programming |
|
|
|
4 |
1,635 |
Shell Programming and Scripting |
|
|
|
3 |
3,481 |
Shell Programming and Scripting |
|
|
|
20 |
31,699 |
Shell Programming and Scripting |
|
|
|
11 |
8,352 |
Shell Programming and Scripting |
|
|
|
2 |
1,949 |
Programming |
|
|
|
2 |
5,404 |
UNIX and Linux Applications |
|
|
|
1 |
38,153 |
UNIX and Linux Applications |
|
|
|
1 |
3,031 |
Programming |
|
|
|
0 |
4,055 |
OS X Support RSS |
|
|
|
1 |
13,865 |
Programming |
|
|
|
29 |
10,168 |
Shell Programming and Scripting |
|
|
|
3 |
2,915 |
Shell Programming and Scripting |
|
|
|
13 |
16,737 |
Programming |
|
|
|
4 |
2,954 |
Shell Programming and Scripting |
|
|
|
3 |
9,533 |
Web Development |
|
|
|
1 |
5,296 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
5,444 |
Shell Programming and Scripting |
|
|
|
0 |
3,620 |
Programming |
|
|
|
6 |
1,994 |
Shell Programming and Scripting |
|
|
|
2 |
10,403 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
2,814 |
Shell Programming and Scripting |
|
|
|
5 |
14,975 |
Shell Programming and Scripting |
|
|
|
0 |
7,148 |
Shell Programming and Scripting |
|
|
|
2 |
5,381 |
Shell Programming and Scripting |
|
|
|
8 |
5,026 |
Shell Programming and Scripting |
|
|
|
0 |
759 |
Software Releases - RSS News |
|
|
|
5 |
2,882 |
Shell Programming and Scripting |
|
|
|
14 |
19,119 |
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)