1 /* Begin include file ..... syserr_actions.incl.pl1 */
 2 
 3 /* Created November 1975 by Larry Johnson */
 4 /* These arrays map the action codes into actions syserr must provide. */
 5 
 6 /* write: Codes for message should be written on operator console */
 7 /* alarm: Codes which should sound alram when written */
 8 /* crash: Codes which should cause system to crash */
 9 /* termp: Codes for which the callers process should be terminated */
10 /* wifnl: Codes for messages which should be written if they can't be logged */
11 
12 dcl  write_flags (0:9) bit (1) unal int static init ("1"b, "1"b, "1"b, "1"b, "0"b, "0"b, "0"b, "0"b, "0"b, "0"b);
13 dcl  alarm_flags (0:9) bit (1) unal int static init ("0"b, "1"b, "1"b, "1"b, "0"b, "0"b, "0"b, "0"b, "0"b, "0"b);
14 dcl  crash_flags (0:9) bit (1) unal int static init ("0"b, "1"b, "0"b, "0"b, "0"b, "0"b, "0"b, "0"b, "0"b, "0"b);
15 dcl  termp_flags (0:9) bit (1) unal int static init ("0"b, "0"b, "1"b, "0"b, "0"b, "0"b, "0"b, "0"b, "0"b, "0"b);
16 dcl  wifnl_flags (0:9) bit (1) unal int static init ("0"b, "0"b, "0"b, "0"b, "1"b, "0"b, "0"b, "0"b, "0"b, "0"b);
17 
18 /* End include file ..... syserr_actions.incl.pl1 */