PWB1/usr/man/man2/times.2

Compare this file to the similar file:
Show the results in this format:

.th TIMES II 5/31/77
.sh NAME
times \*- get process times
.sh SYNOPSIS
(times = 43.)
.br
.ft B
sys  times; buffer
.s3
times(buffer)
.br
struct tbuffer *buffer;
.ft R
.sh DESCRIPTION
.it Times
returns time-accounting information
for the current process
and for the terminated child processes
of the current process.
All times are in 1/60 seconds.
.s3
After the call, the buffer will appear as follows:
.s3
.nf
struct tbuffer {
	long	proc\*_user\*_time;
	long	proc\*_system\*_time;
	long	child\*_user\*_time;
	long	child\*_system\*_time;
};
.s3
.fi
The children times are the sum
of the children's process times and
their children's times.
.sh "SEE ALSO"
time(I)