BSD 4_3_Tahoe release
[unix-history] / usr / src / man / man2 / getrusage.2
CommitLineData
3031ff5e
KM
1.\" Copyright (c) 1980 Regents of the University of California.
2.\" All rights reserved. The Berkeley software License Agreement
3.\" specifies the terms and conditions for redistribution.
4.\"
ca67e7b4 5.\" @(#)getrusage.2 6.6 (Berkeley) 4/3/87
3031ff5e 6.\"
ca67e7b4 7.TH GETRUSAGE 2 "April 3, 1987"
3031ff5e
KM
8.UC 4
9.SH NAME
852d175d 10getrusage \- get information about resource utilization
3031ff5e
KM
11.SH SYNOPSIS
12.nf
852d175d
KM
13.ft B
14#include <sys/time.h>
15#include <sys/resource.h>
3031ff5e 16.PP
852d175d
KM
17.ft B
18.ta \w'#define 'u +\w'RUSAGE_CHILDREN 'u +\w'-1 'u
19#define RUSAGE_SELF 0 /* calling process */
20#define RUSAGE_CHILDREN -1 /* terminated child processes */
21.DT
22.PP
23.ft B
24getrusage(who, rusage)
25int who;
26struct rusage *rusage;
3031ff5e
KM
27.fi
28.SH DESCRIPTION
852d175d
KM
29.I Getrusage
30returns information describing the resources utilized by the current
31process, or all its terminated child processes.
32The
33.I who
0b3847f7
MK
34parameter is one of RUSAGE_SELF or RUSAGE_CHILDREN.
35The buffer to which
852d175d 36.I rusage
0b3847f7 37points will be filled in with
852d175d 38the following structure:
3031ff5e
KM
39.PP
40.nf
852d175d
KM
41.RS
42.ta \w'struct 'u +\w'struct 'u +3u*\w'struct 'u
43struct rusage {
44 struct timeval ru_utime; /* user time used */
45 struct timeval ru_stime; /* system time used */
46 int ru_maxrss;
0b3847f7 47 int ru_ixrss; /* integral shared text memory size */
852d175d
KM
48 int ru_idrss; /* integral unshared data size */
49 int ru_isrss; /* integral unshared stack size */
50 int ru_minflt; /* page reclaims */
51 int ru_majflt; /* page faults */
52 int ru_nswap; /* swaps */
53 int ru_inblock; /* block input operations */
54 int ru_oublock; /* block output operations */
55 int ru_msgsnd; /* messages sent */
56 int ru_msgrcv; /* messages received */
57 int ru_nsignals; /* signals received */
58 int ru_nvcsw; /* voluntary context switches */
59 int ru_nivcsw; /* involuntary context switches */
60};
61.RE
62.DT
3031ff5e 63.fi
852d175d
KM
64.PP
65The fields are interpreted as follows:
66.TP 15
67ru_utime
68the total amount of time spent executing in user mode.
69.TP 15
70ru_stime
71the total amount of time spent in the system executing on behalf
72of the process(es).
73.TP 15
74ru_maxrss
75the maximum resident set size utilized (in kilobytes).
76.TP 15
77ru_ixrss
78an \*(lqintegral\*(rq value indicating the amount of memory used
0b3847f7 79by the text segment
63b0bb9c 80that was also shared among other processes. This value is expressed
a1fd6e75 81in units of kilobytes * ticks-of-execution.
852d175d
KM
82.TP 15
83ru_idrss
84an integral value of the amount of unshared memory residing in the
85data segment of a process (expressed in units of
a1fd6e75 86kilobytes * ticks-of-execution).
852d175d
KM
87.TP 15
88ru_isrss
89an integral value of the amount of unshared memory residing in the
90stack segment of a process (expressed in units of
a1fd6e75 91kilobytes * ticks-of-execution).
852d175d
KM
92.TP 15
93ru_minflt
0b3847f7
MK
94the number of page faults serviced without any I/O activity; here
95I/O activity is avoided by \*(lqreclaiming\*(rq a page frame from
852d175d
KM
96the list of pages awaiting reallocation.
97.TP 15
98ru_majflt
0b3847f7 99the number of page faults serviced that required I/O activity.
852d175d
KM
100.TP 15
101ru_nswap
102the number of times a process was \*(lqswapped\*(rq out of main
103memory.
104.TP 15
105ru_inblock
106the number of times the file system had to perform input.
107.TP 15
a525da8e 108ru_oublock
852d175d
KM
109the number of times the file system had to perform output.
110.TP 15
111ru_msgsnd
0b3847f7 112the number of IPC messages sent.
852d175d
KM
113.TP 15
114ru_msgrcv
0b3847f7 115the number of IPC messages received.
852d175d
KM
116.TP 15
117ru_nsignals
118the number of signals delivered.
119.TP 15
120ru_nvcsw
121the number of times a context switch resulted due to a process
122voluntarily giving up the processor before its time slice was
123completed (usually to await availability of a resource).
124.TP 15
125ru_nivcsw
126the number of times a context switch resulted due to a higher
127priority process becoming runnable or because the current process
128exceeded its time slice.
129.SH NOTES
130The numbers
131.I ru_inblock
132and
a525da8e 133.I ru_oublock
852d175d 134account only for real
0b3847f7 135I/O; data supplied by the caching mechanism is charged only
852d175d 136to the first process to read or write the data.
fd690c8b
KM
137.SH ERRORS
138The possible errors for
139.I getrusage
140are:
141.TP 15
142[EINVAL]
143The
144.I who
145parameter is not a valid value.
146.TP 15
147[EFAULT]
148The address specified by the
149.I rusage
150parameter is not in a valid part of the process address space.
852d175d
KM
151.SH SEE ALSO
152gettimeofday(2), wait(2)
153.SH BUGS
154There is no way to obtain information about a child process
63b0bb9c 155that has not yet terminated.