1 /* BEGIN INCLUDE FILE message_table_entry.incl.pl1 8-17-77 S. Webber */
 2 /* modified BIM April 81 for removal of just return, simfault, finish */
 3 
 4      dcl     mtep                   ptr;
 5      dcl     1 mte                  aligned based (mtep),
 6                2 group              unaligned,
 7                  3 pad1             bit (1), /* not used */
 8                  3 query_error      bit (1),
 9                  3 active_func      bit (1),
10                  3 no_tpr           bit (1),
11                  3 with_tpr         bit (1),
12                  3 io_err           bit (1),
13                  3 undefined        bit (1),
14                  3 unwind_err       bit (1),
15                  3 pad2             bit (1),
16                  3 ignore           bit (1),
17                  3 pad              bit (8),
18                2 action_ind         unaligned,
19                  3 no_special       bit (1),
20                  3 sub_err          bit (1),
21                  3 sig_error        bit (1),
22                  3 storage          bit (1),
23                  3 endpage          bit (1),
24                  3 linkerr          bit (1),
25                  3 cur_inst         bit (1),
26                  3 pad_undefined    bit (1),                /* obsolete bit */
27                  3 gaterr           bit (1),
28                  3 segferr          bit (1),
29                  3 pagerr           bit (1),
30                  3 store            bit (1),
31                  3 outbounds        bit (1),
32                  3 lotfault         bit (1),
33                  3 pad              bit (4),
34                2 format_x           fixed bin,
35                2 string_relp        (4) bit (18) aligned,
36                2 cond_id_relp       bit (18) aligned;
37 
38 /* END INCLUDE FILE message_table_entry.incl.pl1 */