|
|
DataMuseum.dkPresents historical artifacts from the history of: ICL Comet 32 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about ICL Comet 32 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 918 (0x396)
Types: TextFile
Notes: UNIX file
Names: »vtimes.h«
└─⟦26887b7e0⟧ Bits:30009717 Comet 32 harddisk image
└─⟦28c352965⟧ »/a« UNIX Filesystem
└─⟦this⟧ »usr/include/sys/vtimes.h«
/*
* @(#)vtimes.h 3.3 7/14/83
* @(#)Copyright (C) 1983 by National Semiconductor Corp.
*/
/*
* 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
extern struct vtimes zvms; /* an empty (componentwise 0) structure */
#endif