BSD 4_3_Reno release
[unix-history] / usr / src / sys / sys / vtimes.h
/*
* Copyright (c) 1982, 1986 Regents of the University of California.
* All rights reserved. The Berkeley software License Agreement
* specifies the terms and conditions for redistribution.
*
* @(#)vtimes.h 7.1 (Berkeley) 6/4/86
*/
/*
* Structure returned by vtimes() and in vwait().
* In vtimes() two of these are returned, one for the process itself
* and one for all its children. In vwait() these are combined
* by adding componentwise (except for maxrss, which is max'ed).
*/
struct vtimes {
int vm_utime; /* user time (60'ths) */
int vm_stime; /* system time (60'ths) */
/* divide next two by utime+stime to get averages */
unsigned vm_idsrss; /* integral of d+s rss */
unsigned vm_ixrss; /* integral of text rss */
int vm_maxrss; /* maximum rss */
int vm_majflt; /* major page faults */
int vm_minflt; /* minor page faults */
int vm_nswap; /* number of swaps */
int vm_inblk; /* block reads */
int vm_oublk; /* block writes */
};
#ifdef KERNEL
#endif