TIMES(3C) COMMAND REFERENCE TIMES(3C) NAME times - get process times SYNOPSIS #include <sys/types.h> #include <sys/times.h> times(buffer) struct tms *buffer; DESCRIPTION This interface is obsoleted by getrusage(2). The times utility 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 is 60. This is the structure returned by times: /* times.h 6.1 (Berkeley) 83/07/29 */ /* * 4.2 BSD Unix - include file * * $Header: times.3c.nr,v 1.3 88/05/26 17:23:36 lindac Exp $ * $Locker: $ * * Modifications from Berkeley 4.2 BSD * Copyright (c) 1983, Tektronix Inc. * All Rights Reserved * */ /* * Structure returned by times() */ struct tms { time_t tms_utime; /* user time */ time_t tms_stime; /* system time */ time_t tms_cutime; /* user time, children */ time_t tms_cstime; /* system time, children */ }; The children times are the sum of the children's process times and their children's times. SEE ALSO time(1), getrusage(2), wait3(2), and vtimes(3c). Printed 3/13/89 1
%%index%% na:288,77; sy:365,911; de:1276,1608; se:2884,193; %%index%%000000000083