1 /* Begin include file sys_trouble_codes.incl.pl1 changed BIM 82-13-05 */
 2 /* Made sys_trouble_reason char (36) so as to hold strings defined, KPL */
 3 /* format: style3 */
 4 
 5 dcl       sys_trouble_reason  (-11:-1) char (36) var static options (constant) init (
 6                                                             /** **/
 7                               "Ring 0 derail",              /** 11 never print this */
 8                               "Fault while in bound_interceptors",
 9                                                             /** 10 **/
10                               "Fault while in masked environment",
11                                                             /** 9 **/
12                               "Out-of-Segment-Bound on prds",
13                                                             /** 8 **/
14                               "Execute fault by operator",  /** 7 **/
15                               "Unexpected fault",           /** 6 **/
16                               "Unrecognized fault",         /** 5 **/
17                               "Fault/Interrupt with PTL set",
18                                                             /** 4 **/
19                               "Fault in idle process",      /** 3 **/
20                               "Fault/Interrupt while on prds",
21                                                             /** 2 **/
22                               "Page fault while on prds"    /** 1 **/
23                               );
24 
25 dcl       trbl_r0_drl_flt     fixed bin (35) init (-11) static options (constant);
26 dcl       trbl_fim_flt        fixed bin (35) init (-10) static options (constant);
27 dcl       trbl_fault_masked   fixed bin (35) init (-9) static options (constant);
28 dcl       trbl_oosb_prds      fixed bin (35) init (-8) static options (constant);
29 dcl       trbl_exec_flt       fixed bin (35) init (-7) static options (constant);
30 dcl       trbl_unexp_flt      fixed bin (35) init (-6) static options (constant);
31 dcl       trbl_illeg_flt      fixed bin (35) init (-5) static options (constant);
32 dcl       trbl_ptl_fi         fixed bin (35) init (-4) static options (constant);
33 dcl       trbl_idle_flt       fixed bin (35) init (-3) static options (constant);
34 dcl       trbl_prds_fi        fixed bin (35) init (-2) static options (constant);
35 dcl       trbl_prds_pf        fixed bin (35) init (-1) static options (constant);
36 
37 /* End include file sys_trouble_codes.incl.pl1 */