1 
 2 /* Begin include file ...... syserr_fault_msg.incl.pl1
 3           Modified 1985-02-21, EJ Sharpe: changed mach_cond to be "like mc"
 4           Modified 8/12/76 by Noel I. Morris      */
 5 
 6 
 7 /* This include file defines the format of the syserr message
 8    generated on faults handled by various modules.
 9 NOTE: program must also include "mc". */
10 
11 dcl  fmsgp ptr;                                             /* pointer to structure */
12 
13 dcl 1 fault_msg based (fmsgp) aligned,
14     2 mach_cond like mc,                                    /* machine conditions */
15     2 hist_reg (0:127) bit (36);                            /* history registers */
16                     /* someday the hist_reg should be increased to 256 wds to accomodate all DPS8 data */
17 
18 /* End of include file ...... syserr_fault_msg.incl.pl1 */
19