1
2
3
4
5
6
7 dcl Empty_apte bit (18) unal init ("000000"b3) static options (constant);
8 dcl Running_apte bit (18) unal init ("000001"b3) static options (constant);
9 dcl Ready_apte bit (18) unal init ("000002"b3) static options (constant);
10 dcl Waiting_apte bit (18) unal init ("000003"b3) static options (constant);
11 dcl Blocked_apte bit (18) unal init ("000004"b3) static options (constant);
12 dcl Stopped_apte bit (18) unal init ("000005"b3) static options (constant);
13 dcl Ptlocking_apte bit (18) unal init ("000006"b3) static options (constant);
14
15
16