c ACCNT.DCK c common blocks for decoded accounting data c numerical declarations BYTE ac$type(2), ! record type (1) and subtype (2) 1 ac$prio ! priority INTEGER*2 ac$uic(2), ! uic ( ac$uic(1)=member, ac$uic(2)=group ) 1 ac$nodeaddr ! node address code INTEGER*4 ac$begtime(2),! beginning time (i.e. login or print begin) 1 ac$systime(2), ! time record was entered in accounting file 1 ac$quetime(2), ! time print job was entered in queue 1 ac$cputime, ! processor time in hundreths of seconds 1 ac$pagecnt ! pages printed INTEGER*4 ac$pid, ! pid 1 ac$owner, ! owner pid 1 ac$priv(2), ! privileges 1 ac$jobid, ! queue entry number 1 ac$status, ! final status code 1 ac$imgcnt, ! execution count 1 ac$faults, ! page fault count 1 ac$faultio, ! page fault I/O count 1 ac$wspeak, ! peak working set 1 ac$pagefl, ! peak page file usage 1 ac$diocnt, ! direct I/O count 1 ac$biocnt, ! buffered I/O count 1 ac$volumes, ! number of volumes mounted 1 ac$qiocnt, ! number of QIOs issued 1 ac$getcnt ! number of GETs issued c numerical common block for decoded accounting data common / ac$com_i / 1 ac$begtime, ac$quetime, ac$systime, ac$priv, ac$cputime, 1 ac$pid, ac$owner, ac$jobid, 1 ac$status, ac$imgcnt, ac$faults, ac$faultio, 1 ac$wspeak, ac$pagefl, ac$diocnt, ac$biocnt, ac$volumes, 1 ac$pagecnt, ac$qiocnt, ac$getcnt, ac$nodeaddr, ac$uic, 1 ac$type, ac$prio c character declarations CHARACTER ac$username*12, ! username 1 ac$account*8, ! account name 1 ac$nodename*6, ! node name 1 ac$terminal*7, ! terminal name 1 ac$jobname*39, ! job name 1 ac$queue*16, ! queue name 1 ac$remoteid*16, ! remote id (?) 1 ac$junk*256 ! filename, imagename, or user data c character common block for decoded accounting data common / ac$com_c / 1 ac$username, ac$account, ac$nodename, ac$terminal, 1 ac$jobname, ac$queue, ac$remoteid, ac$junk