19 lines
570 B
C
19 lines
570 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/ptmp.h,v 1.2 1993/11/05 04:27:49 jwag Exp $"
|
|
|
|
/*
|
|
* per process temporary data
|
|
*/
|
|
struct ptmp {
|
|
uid_t pt_uid; /* userid */
|
|
char pt_name[8]; /* login name */
|
|
long pt_cpu[2]; /* CPU (sys+usr) P/NP time tics */
|
|
unsigned pt_mem; /* avg. memory size (64byte clicks) */
|
|
};
|