chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / conform / data / sys / select.h-data
1 #if !defined ISO && !defined POSIX
2 type time_t
3 type suseconds_t
4
5 type {struct timeval}
6 element {struct timeval} time_t tv_sec
7 element {struct timeval} suseconds_t tv_usec
8
9 type sigset_t
10
11 type {struct timespec}
12 element {struct timespec} time_t tv_sec
13 element {struct timespec} long tv_nsec
14
15 type fd_set
16 element fd_set long fds_bits []
17
18 function-macro void FD_CLR (int, fd_set*)
19 function-macro int FD_ISSET (int, fd_set*)
20 function-macro void FD_SET (int, fd_set*)
21 function-macro void FD_ZERO (fd_set*)
22
23 macro FD_SETSIZE
24
25 #ifdef XOPEN2K
26 function int pselect (int, fd_set*, fd_set*, fd_set*, const struct timespec*, const sigset_t*)
27 #endif
28 function int select (int, fd_set*, fd_set*, fd_set*, struct timeval*)
29
30 allow-header signal.h
31 allow-header sys/time.h
32 allow-header time.h
33 #endif