1 /* BEGIN INCLUDE FILE as_meter_numbers.incl.pl1 */
 2 
 3 /* These are the names and numbers of the slots in as_meter_table
 4    (see as_meter_table.incl.pl1).
 5 
 6    Written March 1980 by Tom Casey
 7    Modified June 1981 by T. Casey for MR9.0 to add ABS_TRYLOG_METER.
 8 */
 9 
10 
11 /****^  HISTORY COMMENTS:
12   1) change(86-01-31,Herbst), approve(87-07-21,MCR7694),
13      audit(87-07-21,GDixon), install(87-08-04,MR12.1-1056):
14       A) Add NETUP_METER.
15       B) Add AS_METER_NAMES array.
16                                                    END HISTORY COMMENTS */
17 
18 
19 dcl  ASINIT_METER fixed bin int static options (constant) init (1); /* as_init_, parts 1 and 2 */
20 dcl  DIALUP_METER fixed bin int static options (constant) init (2); /* dialup_ */
21 dcl  DUM_METER fixed bin int static options (constant) init (3); /* daemon_user_manager_ */
22 dcl  AUM_METER fixed bin int static options (constant) init (4); /* absentee_user_manager_ */
23 dcl  AU_METER fixed bin int static options (constant) init (5); /* absentee_utility_ */
24 dcl  CPG_METER fixed bin int static options (constant) init (6); /* cpg_ */
25 dcl  DPG_METER fixed bin int static options (constant) init (7); /* dpg_ */
26 dcl  ACCTUP_METER fixed bin int static options (constant) init (8); /* accounting updates */
27 dcl  INSTALL_METER fixed bin int static options (constant) init (9); /* installs (up_sysctl_) */
28 dcl  ABSQ_METER fixed bin int static options (constant) init (10); /* absentee queue reads and writes */
29 dcl  MSGCORD_METER fixed bin int static options (constant) init (11); /* message coordinator */
30 dcl  COMMAND_METER fixed bin int static options (constant) init (12); /* operator commands, other than admin */
31 dcl  SAC_METER fixed bin int static options (constant) init (13); /* sac (send_admin_command handling) */
32 dcl  ADMIN_METER fixed bin int static options (constant) init (14); /* admin mode */
33 dcl  SSU_METER fixed bin int static options (constant) init (15); /* system_start_up.ec, parts 1, 2, and 3 */
34 dcl  FIXPDT_METER fixed bin int static options (constant) init (16); /* cleanup of PDTs after crash (act_ctl_$init) */
35 dcl  ABS_TRYLOG_METER fixed bin int static options (constant) init (17); /* attempts to login absentees via call lg_ctl_
36                                                                (the attempts might fail because of load control limits) */
37 dcl  NETUP_METER fixed bin int static options (constant) init (18); /* a call to network_accounting_update_ */
38 
39 dcl  recursion_possible bit (18) int static options (constant) init ("000000000011000000"b); /* 11 & 12 (MSGCORD and COMMAND) */
40 
41 /* Bit length of recursion_possible equals highest slot number given above.  */
42 
43 dcl  AS_METER_NAMES (18) char (8) int static options (constant) init (
44      "ASINIT",  "DIALUP",   "DUM",    "AUM",     "AU",
45      "CPG",     "DPG",      "ACCTUP", "INSTALL", "ABSQ",
46      "MSGCORD", "COMMAND",  "SAC",    "ADMIN",   "SSU",
47      "FIXPDT",  "TRYABSLG", "NETUP");
48 
49 /* END INCLUDE FILE as_meter_numbers.incl.pl1 */