26 lines
881 B
C
26 lines
881 B
C
/* Copyright (c) 1984 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ident "$Header: /proj/irix6.5.7m/isms/eoe/cmd/acct/RCS/tacct.h,v 1.2 1993/11/05 04:28:25 jwag Exp $"
|
|
|
|
/*
|
|
* total accounting (for acct period), also for day
|
|
*/
|
|
|
|
struct tacct {
|
|
uid_t ta_uid; /* userid */
|
|
char ta_name[8]; /* login name */
|
|
float ta_cpu[2]; /* cum. cpu time, p/np (mins) */
|
|
float ta_kcore[2]; /* cum kcore-minutes, p/np */
|
|
float ta_con[2]; /* cum. connect time, p/np, mins */
|
|
float ta_du; /* cum. disk usage */
|
|
long ta_pc; /* count of processes */
|
|
unsigned short ta_sc; /* count of login sessions */
|
|
unsigned short ta_dc; /* count of disk samples */
|
|
unsigned short ta_fee; /* fee for special services */
|
|
};
|