1
2
3
4
5
6
7
8
9
10
11
12 dcl (LOWEST_MODE init (1),
13 HIGHEST_MODE init (8)) fixed bin int static options (constant);
14
15 dcl TM_NORMAL_MODE fixed bin static options (constant) init (1);
16 dcl TM_STATISTICAL_MODE fixed bin static options (constant) init (2);
17 dcl TM_READ_ONLY_MODE fixed bin static options (constant) init (3);
18 dcl TM_NEVER_WRITE_MODE fixed bin static options (constant) init (4);
19 dcl TM_TEST_NORMAL_MODE fixed bin static options (constant) init (5);
20 dcl TM_TEST_STATISTICAL_MODE fixed bin static options (constant) init (6);
21 dcl TM_TEST_READ_ONLY_MODE fixed bin static options (constant) init (7);
22 dcl TM_TEST_NEVER_WRITE_MODE fixed bin static options (constant) init (8);
23
24