|
|
coherent
/*
* /usr/include/sys/acct.h
*
* Accounting structure.
*
* Revised: Tue Apr 27 08:43:34 1993 CDT
*/
#ifndef __SYS_ACCT_H__
#define __SYS_ACCT_H__
#include <sys/types.h>
#include <sys/_time.h>
typedef unsigned short comp_t;
struct acct {
char ac_comm[10]; /* Command name */
comp_t ac_utime; /* User time */
comp_t ac_stime; /* System time */
comp_t ac_etime; /* Elapsed time */
time_t ac_btime; /* Beginning time of process */
short ac_uid; /* User id */
short ac_gid; /* Group id */
short ac_mem; /* Average memory usage */
comp_t ac_io; /* Number of disk I/O blocks */
dev_t ac_tty; /* Control typewriter */
char ac_flag; /* Accounting flag */
};
/*
* Flags (ac_flag).
*/
#define AFORK 01 /* Execute fork, but not exec */
#define ASU 02 /* Used super user privileges */
#endif
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.