1TIMES(2)                      System Calls Manual                     TIMES(2)
2
3
4

NAME

6       times - get process times
7

SYNOPSIS

9       times(buffer)
10       struct tbuffer *buffer;
11

DESCRIPTION

13       Times  returns  time-accounting information for the current process and
14       for the terminated child processes of the current process.   All  times
15       are in 1/HZ seconds, where HZ=60 in North America.
16
17       After the call, the buffer will appear as follows:
18
19       struct tbuffer {
20            long proc_user_time;
21            long proc_system_time;
22            long child_user_time;
23            long child_system_time;
24       };
25
26       The  children  times  are  the  sum of the children's process times and
27       their children's times.
28

SEE ALSO

30       time(1), time(2)
31

ASSEMBLER

33       (times = 43.)
34       sys times; buffer
35
36
37
38                                                                      TIMES(2)
Impressum