1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 dcl ASINIT_METER fixed bin int static options (constant) init (1);
20 dcl DIALUP_METER fixed bin int static options (constant) init (2);
21 dcl DUM_METER fixed bin int static options (constant) init (3);
22 dcl AUM_METER fixed bin int static options (constant) init (4);
23 dcl AU_METER fixed bin int static options (constant) init (5);
24 dcl CPG_METER fixed bin int static options (constant) init (6);
25 dcl DPG_METER fixed bin int static options (constant) init (7);
26 dcl ACCTUP_METER fixed bin int static options (constant) init (8);
27 dcl INSTALL_METER fixed bin int static options (constant) init (9);
28 dcl ABSQ_METER fixed bin int static options (constant) init (10);
29 dcl MSGCORD_METER fixed bin int static options (constant) init (11);
30 dcl COMMAND_METER fixed bin int static options (constant) init (12);
31 dcl SAC_METER fixed bin int static options (constant) init (13);
32 dcl ADMIN_METER fixed bin int static options (constant) init (14);
33 dcl SSU_METER fixed bin int static options (constant) init (15);
34 dcl FIXPDT_METER fixed bin int static options (constant) init (16);
35 dcl ABS_TRYLOG_METER fixed bin int static options (constant) init (17);
36
37 dcl NETUP_METER fixed bin int static options (constant) init (18);
38
39 dcl recursion_possible bit (18) int static options (constant) init ("000000000011000000"b);
40
41
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