1
2
3
4
5
6
7
8
9 dcl (system_ctl_hdr_len init (32),
10 system_ctl_entry_len init (0),
11 system_ctl_version init (1)) fixed bin internal static options (constant);
12
13 dcl system_ctl_ptr ptr int static;
14
15 dcl 1 system_ctl aligned based (system_ctl_ptr),
16 2 hdr like control_hdr,
17 2 flags,
18 (3 mp_started_sw bit (1),
19 3 filler bit (35)) unaligned,
20 2 mp_started_count fixed bin,
21 2 mp_active_count fixed bin,
22 2 password char (10),
23 2 lock_wait_time fixed bin,
24 2 filler (25) fixed bin (35);
25
26