1 
 2 /* Begin include file ...... status_flags.incl.pl1 */
 3 /* created 6/11/75 by Noel I. Morris    */
 4 
 5 dcl (backup_flag init ("100000000000000000"b),              /* indicates retry of previous operation */
 6      init_flag init ("010000000000000000"b),                /* indicates backup if failure during initiation */
 7      report_flag init ("001000000000000000"b),              /* indicates error should be reported */
 8      halt_flag init ("000100000000000000"b),                /* indicates error caused device to halt */
 9      eurc_no_backup_flag init ("000010000000000000"b))      /* indicates eurc device should ignore backup_flag */
10           bit (18) aligned static;
11 
12 /* End of include file ...... status_flags.incl.pl1 */
13