* sysdeps/i386/dl-machine.h (elf_machine_rel): Implement
[glibc.git] / conform / data / sys / select.h-data
blob51f7844cb6220dd561edf5eed081f1d296d8cc5b
1 #if !defined ISO && !defined POSIX
2 type time_t
3 type suseconds_t
5 type {struct timeval}
6 element {struct timeval} time_t tv_sec
7 element {struct timeval} suseconds_t tv_usec
9 type sigset_t
11 type {struct timespec}
12 element {struct timespec} time_t tv_sec
13 element {struct timespec} long tv_nsec
15 type fd_set
16 element fd_set long fds_bits []
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*)
23 macro FD_SETSIZE
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*)
30 allow-header signal.h
31 allow-header sys/time.h
32 allow-header time.h
33 #endif