2.9
[glibc/nacl-glibc.git] / conform / data / sys / time.h-data
blob174708b53dc5aa9f60bd3d08b31bd883a44b4326
1 #ifndef ISO
2 type {struct timeval}
4 element {struct timeval} time_t tv_sec
5 element {struct timeval} suseconds_t tv_usec
7 type {struct itimerval}
9 element {struct itimerval} {struct timeval} it_interval
10 element {struct itimerval} {struct timeval} it_value
12 type time_t
13 type suseconds_t
15 type fd_set
16 element fd_set long fds_bits []
18 constant ITIMER_REAL
19 constant ITIMER_VIRTUAL
20 constant ITIMER_PROF
22 macro FD_CLR
23 macro FD_ISSET
24 macro FD_SET
25 macro FD_ZERO
27 constant FD_SETSIZE
29 function int getitimer (int, struct itimerval*)
30 function int setitimer (int, const struct itimerval*, struct itimerval*)
31 function int gettimeofday (struct timeval*, void*)
32 function int select (int, fd_set*, fd_set*, fd_set*, struct timeval*)
33 function int utimes (const char*, const struct timeval [2])
35 allow fds_*
36 allow it_*
37 allow tv_*
38 allow FD_*
39 allow ITIMER_*
40 allow *_t
42 allow-header sys/select.h
43 #endif