Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

Unix

Unix v7

times(2)


TIMES

TIMES

NAME
SYNOPSIS
DESCRIPTION
SEE ALSO
ASSEMBLER

NAME

times − get process times

SYNOPSIS

times(buffer)
struct tbuffer *buffer;

DESCRIPTION

Times returns time-accounting information for the current process and for the terminated child processes of the current process. All times are in 1/HZ seconds, where HZ=60 in North America.

After the call, the buffer will appear as follows:

struct tbuffer {

long

proc_user_time;

long

proc_system_time;

long

child_user_time;

long

child_system_time;

};

The children times are the sum of the children’s process times and their children’s times.

SEE ALSO

time(1), time(2)

ASSEMBLER

(times = 43.)
sys times; buffer



times(2)