1 /* BEGIN INCLUDE FILE project_total.incl.pl1 */
 2 
 3 /* Modified May 1981 by ENK to alter iod.cpu to iod.pages */
 4 
 5 dcl 1 project_total aligned,
 6     2 logins fixed bin,                                     /* number of logins */
 7     2 crashes fixed bin,                                    /* sessions abnormally terminated */
 8     2 interactive (0: 7),                                   /* interactive use, shifts 0-7 */
 9       3 charge float bin,                                   /* total dollar charge this shift */
10       3 xxx fixed bin,
11       3 cpu fixed bin (71),                                 /* cpu usage in microseconds */
12       3 core fixed bin (71),                                /* core demand in page-microseconds */
13       3 connect fixed bin (71),                             /* 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,                                   /* dollar charge this queue */
17       3 jobs fixed bin,                                     /* number of jobs submitted */
18       3 cpu fixed bin (71),                                 /* total cpu time in microseconds */
19       3 memory fixed bin (71) init ((4)0),                  /* total memory usage in vpfs */
20     2 iod (4),                                              /* io daemon use, queues 1-4 */
21       3 charge float bin,                                   /* dollar charge this queue */
22       3 pieces fixed bin,                                   /* pieces of output requested */
23       3 pad fixed bin (35),
24       3 pages fixed bin (35),                               /* number of pages printed */
25       3 lines fixed bin (71),                               /* total record count of output */
26     2 devices (16) float bin,                               /* device charges */
27     2 end_pad;
28 
29 /* END INCLUDE FILE project_total.incl.pl1 */