modern syntax for asgops & inits cause Donn's latest ccom rejects the old.
[unix-history] / usr / src / lib / libc / sys / 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.\"
a525da8e 5.\" @(#)getrusage.2 6.5 (Berkeley) %G%
3031ff5e 6.\"
c11fc4d8 7.TH GETRUSAGE 2 ""
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
852d175d
KM
81in units of kilobytes * seconds-of-execution and is calculated by
82summing the number of shared memory pages in use each time the internal
83system clock ticks and then averaging over 1 second intervals.
84.TP 15
85ru_idrss
86an integral value of the amount of unshared memory residing in the
87data segment of a process (expressed in units of
88kilobytes * seconds-of-execution).
89.TP 15
90ru_isrss
91an integral value of the amount of unshared memory residing in the
92stack segment of a process (expressed in units of
93kilobytes * seconds-of-execution).
94.TP 15
95ru_minflt
0b3847f7
MK
96the number of page faults serviced without any I/O activity; here
97I/O activity is avoided by \*(lqreclaiming\*(rq a page frame from
852d175d
KM
98the list of pages awaiting reallocation.
99.TP 15
100ru_majflt
0b3847f7 101the number of page faults serviced that required I/O activity.
852d175d
KM
102.TP 15
103ru_nswap
104the number of times a process was \*(lqswapped\*(rq out of main
105memory.
106.TP 15
107ru_inblock
108the number of times the file system had to perform input.
109.TP 15
a525da8e 110ru_oublock
852d175d
KM
111the number of times the file system had to perform output.
112.TP 15
113ru_msgsnd
0b3847f7 114the number of IPC messages sent.
852d175d
KM
115.TP 15
116ru_msgrcv
0b3847f7 117the number of IPC messages received.
852d175d
KM
118.TP 15
119ru_nsignals
120the number of signals delivered.
121.TP 15
122ru_nvcsw
123the number of times a context switch resulted due to a process
124voluntarily giving up the processor before its time slice was
125completed (usually to await availability of a resource).
126.TP 15
127ru_nivcsw
128the number of times a context switch resulted due to a higher
129priority process becoming runnable or because the current process
130exceeded its time slice.
131.SH NOTES
132The numbers
133.I ru_inblock
134and
a525da8e 135.I ru_oublock
852d175d 136account only for real
0b3847f7 137I/O; data supplied by the caching mechanism is charged only
852d175d 138to the first process to read or write the data.
fd690c8b
KM
139.SH ERRORS
140The possible errors for
141.I getrusage
142are:
143.TP 15
144[EINVAL]
145The
146.I who
147parameter is not a valid value.
148.TP 15
149[EFAULT]
150The address specified by the
151.I rusage
152parameter is not in a valid part of the process address space.
852d175d
KM
153.SH SEE ALSO
154gettimeofday(2), wait(2)
155.SH BUGS
156There is no way to obtain information about a child process
63b0bb9c 157that has not yet terminated.