1 /* BEGIN INCLUDE FILE grand_total.incl.pl1 (last modified 3/16/76 by TAC) */
 2 
 3 /* Modified May 1981 by E. N. Kittlitz per UNCA. change iod.cpu to pages */
 4 
 5 dcl 1 grand_total aligned,
 6     2 logins fixed bin init (0),                            /* number of logins */
 7     2 crashes fixed bin init (0),                           /* sessions abnormally terminated */
 8     2 interactive (0: 7),                                   /* interactive use, shifts 0-7 */
 9       3 charge float bin init ((8)0),                       /* total dollar charge this shift */
10       3 xxx fixed bin,
11       3 cpu fixed bin (71) init ((8)0),                     /* cpu usage in microseconds */
12       3 core fixed bin (71) init ((8)0),                    /* core demand in page-microseconds */
13       3 connect fixed bin (71) init ((8)0),                 /* total console time in microseconds */
14       3 io_ops fixed bin (71) init ((8)0),                  /* total terminal IO operations */
15     2 absentee (4),                                         /* absentee use, queues 1-4 */
16       3 charge float bin init ((4)0.0e0),                   /* dollar charge this queue */
17       3 jobs fixed bin init ((4)0),                         /* number of jobs submitted */
18       3 cpu fixed bin (71) init ((4)0),                     /* total cpu time in microseconds */
19       3 memory fixed bin (71) init ((4)0),                  /* total memory usage in milli-vpfs */
20     2 iod (4),                                              /* io daemon use, queues 1-4 */
21       3 charge float bin init ((4)0.0e0),                   /* dollar charge this queue */
22       3 pieces fixed bin init ((4)0),                       /* pieces of output requested */
23       3 pad fixed bin (35) init ((4)0),
24       3 pages fixed bin (35) init ((4)0),                   /* number of pages printed */
25       3 lines fixed bin (71) init ((4)0),                   /* total record count of output */
26     2 devices (16) float bin init ((16)0e0),                /* device charges */
27     2 end_pad;
28 
29 /* END INCLUDE FILE grand_total.incl.pl1 */