1
2
3
4
5
6
7
8
9
10
11
12
13 declare check_tables_info_ptr pointer;
14 declare 1 check_tables_info aligned based (check_tables_info_ptr),
15 2 version char (8) aligned,
16 2 system_type fixed bin,
17 2 flags aligned,
18 3 report_error_counts
19 bit (1) unaligned,
20 3 report_errors bit (1) unaligned,
21 3 report_statistics bit (1) unaligned,
22 3 report_state bit (1) unaligned,
23 3 recover_errors bit (1) unaligned,
24
25
26 3 errors_found bit (1) unaligned,
27 3 pad bit (32) unaligned,
28 2 sst_ptr pointer,
29 2 core_map_ptr pointer,
30 2 pvt_ptr pointer,
31 2 pad_ptr (7) pointer,
32 2 report entry options (variable),
33 2 display_cme entry (pointer),
34 2 display_ptw entry (pointer),
35 2 display_aste entry (pointer),
36 2 display_pvname entry (fixed bin) returns (char (32)),
37 2 display_ptr entry (pointer) returns (char (*)),
38 2 pad_entries (5) entry;
39
40 declare PC_CHECK_TABLES_INFO_VERSION_1
41 char (8) aligned init ("pcct0001") int static options (constant);
42
43