1 /* BEGIN INCLUDE FILE ... console_report_data.incl.pl1 */ 2 3 dcl (esp, tsp) ptr; 4 5 dcl 1 eseg based (esp) aligned, /* declaration of termuseg */ 6 2 version fixed bin, /* = 1 */ 7 2 nue fixed bin, /* Number of entries. */ 8 2 esh (7) fixed bin, 9 2 elt (18723), /* One entry per terminal-user combination */ 10 3 hrs fixed bin (71), /* Connect time */ 11 3 cpu fixed bin (71), /* CPU usage */ 12 3 cnt fixed bin, /* Number of logins */ 13 3 nxt fixed bin, /* Next entry on chain for terminal. */ 14 3 name char (32); /* User name */ 15 16 dcl 1 tsg based (tsp) aligned, /* Declaration of "termseg" */ 17 2 version fixed bin, /* = 1 */ 18 2 nterms fixed bin, /* Number of entries */ 19 2 nlogins fixed bin, /* Number of logins total */ 20 2 f_login fixed bin (71), /* Time of first login */ 21 2 l_login fixed bin (71), /* Time of last login */ 22 2 tottime fixed bin (71), /* Total connect time */ 23 2 totcpu fixed bin (71), /* Total CPU time */ 24 2 totnolog fixed bin, 25 2 ntypes fixed bin, /* Number of different types */ 26 2 typtab (250), /* Table by type */ 27 3 t char (32), /* Terminal type */ 28 3 c fixed bin (71), /* CPU */ 29 3 u fixed bin (71), /* Connect */ 30 3 p fixed bin, /* Number of different terminals */ 31 3 q fixed bin, /* Number of logins */ 32 3 tnolog fixed bin, /* Number of refused logins */ 33 3 tnolog1 fixed bin, 34 2 tary (9926), /* One entry per terminal */ 35 3 tt char (32), /* Terminal type (2741 etc) */ 36 3 id char (16), /* Terminal ID code */ 37 3 hr fixed bin (71), /* Total connect time */ 38 3 cp fixed bin (71), /* Total CPU time. */ 39 3 ct fixed bin, /* Count of logins. */ 40 3 nolog fixed bin, /* Number of refused logins */ 41 3 nolog1 fixed bin, 42 3 uc fixed bin, /* Pointer to chain of user entries in termuseg */ 43 3 cm char (20) aligned; /* Comment. Location of terminal */ 44 45 dcl console_report_data_version_1 fixed bin static init (1); 46 47 /* END INCLUDE FILE ... console_report_data.incl.pl1 */