1: /*
2: * Copyright (c) 1982, 1986 Regents of the University of California.
3: * All rights reserved. The Berkeley software License Agreement
4: * specifies the terms and conditions for redistribution.
5: *
6: * @(#)vtimes.h 7.1 (Berkeley) 6/4/86
7: */
8:
9: /*
10: * Structure returned by vtimes() and in vwait().
11: * In vtimes() two of these are returned, one for the process itself
12: * and one for all its children. In vwait() these are combined
13: * by adding componentwise (except for maxrss, which is max'ed).
14: */
15: struct vtimes {
16: int vm_utime; /* user time (60'ths) */
17: int vm_stime; /* system time (60'ths) */
18: /* divide next two by utime+stime to get averages */
19: unsigned vm_idsrss; /* integral of d+s rss */
20: unsigned vm_ixrss; /* integral of text rss */
21: int vm_maxrss; /* maximum rss */
22: int vm_majflt; /* major page faults */
23: int vm_minflt; /* minor page faults */
24: int vm_nswap; /* number of swaps */
25: int vm_inblk; /* block reads */
26: int vm_oublk; /* block writes */
27: };
28:
29: #ifdef KERNEL
30: #endif
Defined struct's
vtimes
defined in line
15; used 14 times
Usage of this include