xref: /freebsd/lib/libc/gen/times.3 (revision dc36d6f9bb1753f3808552f3afd30eda9a7b206a)
158f0484fSRodney W. Grimes.\" Copyright (c) 1990, 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
558f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
658f0484fSRodney W. Grimes.\" are met:
758f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
858f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
958f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1058f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1158f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
12*fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
1358f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1458f0484fSRodney W. Grimes.\"    without specific prior written permission.
1558f0484fSRodney W. Grimes.\"
1658f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1758f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1858f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1958f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2058f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2158f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2258f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2358f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2458f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2558f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2658f0484fSRodney W. Grimes.\" SUCH DAMAGE.
2758f0484fSRodney W. Grimes.\"
28a2944602SGiorgos Keramidas.Dd December 1, 2008
2958f0484fSRodney W. Grimes.Dt TIMES 3
30a307d598SRuslan Ermilov.Os
3158f0484fSRodney W. Grimes.Sh NAME
3258f0484fSRodney W. Grimes.Nm times
3358f0484fSRodney W. Grimes.Nd process times
3425bb73e0SAlexey Zelkin.Sh LIBRARY
3525bb73e0SAlexey Zelkin.Lb libc
3658f0484fSRodney W. Grimes.Sh SYNOPSIS
3732eef9aeSRuslan Ermilov.In sys/times.h
3858f0484fSRodney W. Grimes.Ft clock_t
3958f0484fSRodney W. Grimes.Fn times "struct tms *tp"
4058f0484fSRodney W. Grimes.Sh DESCRIPTION
4158f0484fSRodney W. Grimes.Bf -symbolic
4297e1bac1SRuslan ErmilovThis interface is obsoleted by
4397e1bac1SRuslan Ermilov.Xr getrusage 2
4497e1bac1SRuslan Ermilovand
455d25d756SMaxim Sobolev.Xr gettimeofday 2 .
4658f0484fSRodney W. Grimes.Ef
4758f0484fSRodney W. Grimes.Pp
4858f0484fSRodney W. GrimesThe
4958f0484fSRodney W. Grimes.Fn times
5058f0484fSRodney W. Grimesfunction returns the value of time in
5158f0484fSRodney W. Grimes.Dv CLK_TCK Ns 's
52a2944602SGiorgos Keramidasof a second since the system startup time.
53a2944602SGiorgos KeramidasThe current value of
54a2944602SGiorgos Keramidas.Dv CLK_TCK ,
55a2944602SGiorgos Keramidasthe frequency of the statistics clock in ticks per second, may be
56a2944602SGiorgos Keramidasobtained through the
57a2944602SGiorgos Keramidas.Xr sysconf 3
58a2944602SGiorgos Keramidasinterface.
5958f0484fSRodney W. Grimes.Pp
6058f0484fSRodney W. GrimesIt also fills in the structure pointed to by
6158f0484fSRodney W. Grimes.Fa tp
6258f0484fSRodney W. Grimeswith time-accounting information.
6358f0484fSRodney W. Grimes.Pp
6458f0484fSRodney W. GrimesThe
6597e1bac1SRuslan Ermilov.Vt tms
6658f0484fSRodney W. Grimesstructure is defined as follows:
6758f0484fSRodney W. Grimes.Bd -literal -offset indent
6897e1bac1SRuslan Ermilovstruct tms {
6958f0484fSRodney W. Grimes	clock_t tms_utime;
7058f0484fSRodney W. Grimes	clock_t tms_stime;
7158f0484fSRodney W. Grimes	clock_t tms_cutime;
7258f0484fSRodney W. Grimes	clock_t tms_cstime;
7397e1bac1SRuslan Ermilov};
7458f0484fSRodney W. Grimes.Ed
7558f0484fSRodney W. Grimes.Pp
7658f0484fSRodney W. GrimesThe elements of this structure are defined as follows:
7797e1bac1SRuslan Ermilov.Bl -tag -width ".Va tms_cutime"
7897e1bac1SRuslan Ermilov.It Va tms_utime
7958f0484fSRodney W. GrimesThe
8058f0484fSRodney W. Grimes.Tn CPU
8158f0484fSRodney W. Grimestime charged for the execution of user instructions.
8297e1bac1SRuslan Ermilov.It Va tms_stime
8358f0484fSRodney W. GrimesThe
8458f0484fSRodney W. Grimes.Tn CPU
8558f0484fSRodney W. Grimestime charged for execution by the system on behalf of
8658f0484fSRodney W. Grimesthe process.
8797e1bac1SRuslan Ermilov.It Va tms_cutime
8858f0484fSRodney W. GrimesThe sum of the
8997e1bac1SRuslan Ermilov.Va tms_utime Ns s
9058f0484fSRodney W. Grimesand
9197e1bac1SRuslan Ermilov.Va tms_cutime Ns s
9258f0484fSRodney W. Grimesof the child processes.
9397e1bac1SRuslan Ermilov.It Va tms_cstime
9458f0484fSRodney W. GrimesThe sum of the
9558f0484fSRodney W. Grimes.Fa tms_stime Ns s
9658f0484fSRodney W. Grimesand
9758f0484fSRodney W. Grimes.Fa tms_cstime Ns s
9858f0484fSRodney W. Grimesof the child processes.
9958f0484fSRodney W. Grimes.El
10058f0484fSRodney W. Grimes.Pp
10158f0484fSRodney W. GrimesAll times are in
10258f0484fSRodney W. Grimes.Dv CLK_TCK Ns 's
10358f0484fSRodney W. Grimesof a second.
10458f0484fSRodney W. Grimes.Pp
10558f0484fSRodney W. GrimesThe times of a terminated child process are included in the
10697e1bac1SRuslan Ermilov.Va tms_cutime
10758f0484fSRodney W. Grimesand
10897e1bac1SRuslan Ermilov.Va tms_cstime
10958f0484fSRodney W. Grimeselements of the parent when one of the
11058f0484fSRodney W. Grimes.Xr wait 2
11158f0484fSRodney W. Grimesfunctions returns the process ID of the terminated child to the parent.
11258f0484fSRodney W. GrimesIf an error occurs,
11358f0484fSRodney W. Grimes.Fn times
11458f0484fSRodney W. Grimesreturns the value
11597e1bac1SRuslan Ermilov.Pq Po Vt clock_t Pc Ns \-1 ,
11697e1bac1SRuslan Ermilovand sets
11797e1bac1SRuslan Ermilov.Va errno
11897e1bac1SRuslan Ermilovto indicate the error.
11958f0484fSRodney W. Grimes.Sh ERRORS
12058f0484fSRodney W. GrimesThe
12158f0484fSRodney W. Grimes.Fn times
12258f0484fSRodney W. Grimesfunction
12358f0484fSRodney W. Grimesmay fail and set the global variable
12458f0484fSRodney W. Grimes.Va errno
12558f0484fSRodney W. Grimesfor any of the errors specified for the library
12658f0484fSRodney W. Grimesroutines
12758f0484fSRodney W. Grimes.Xr getrusage 2
12858f0484fSRodney W. Grimesand
12958f0484fSRodney W. Grimes.Xr gettimeofday 2 .
13058f0484fSRodney W. Grimes.Sh SEE ALSO
13158f0484fSRodney W. Grimes.Xr time 1 ,
13258f0484fSRodney W. Grimes.Xr getrusage 2 ,
13358f0484fSRodney W. Grimes.Xr gettimeofday 2 ,
1349cb8a105SJoerg Wunsch.Xr wait 2 ,
135a2944602SGiorgos Keramidas.Xr sysconf 3 ,
1369cb8a105SJoerg Wunsch.Xr clocks 7
13758f0484fSRodney W. Grimes.Sh STANDARDS
13858f0484fSRodney W. GrimesThe
13958f0484fSRodney W. Grimes.Fn times
14058f0484fSRodney W. Grimesfunction
14158f0484fSRodney W. Grimesconforms to
14258f0484fSRodney W. Grimes.St -p1003.1-88 .
143