File: time.h-data

package info (click to toggle)
glibc 2.19-11
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 202,392 kB
  • ctags: 140,042
  • sloc: ansic: 969,214; asm: 241,208; sh: 10,046; makefile: 8,471; cpp: 3,595; perl: 2,077; pascal: 1,839; awk: 1,704; yacc: 317; sed: 73
file content (43 lines) | stat: -rw-r--r-- 962 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX && !defined POSIX2008
type {struct timeval}

element {struct timeval} time_t tv_sec
element {struct timeval} suseconds_t tv_usec

type {struct itimerval}

element {struct itimerval} {struct timeval} it_interval
element {struct itimerval} {struct timeval} it_value

type time_t
type suseconds_t

type fd_set
element fd_set long fds_bits []

constant ITIMER_REAL
constant ITIMER_VIRTUAL
constant ITIMER_PROF

macro FD_CLR
macro FD_ISSET
macro FD_SET
macro FD_ZERO

constant FD_SETSIZE

function int getitimer (int, struct itimerval*)
function int setitimer (int, const struct itimerval*, struct itimerval*)
function int gettimeofday (struct timeval*, void*)
function int select (int, fd_set*, fd_set*, fd_set*, struct timeval*)
function int utimes (const char*, const struct timeval [2])

allow fds_*
allow it_*
allow tv_*
allow FD_*
allow ITIMER_*
allow *_t

allow-header sys/select.h
#endif