1 /* BEGIN INCLUDE FILE sub_err_flags.incl.pl1 BIM 11/81 */ 2 /* format: style3 */ 3 4 /* These constants are to be used for the flags argument of sub_err_ */ 5 /* They are just "string (condition_info_header.action_flags)" */ 6 7 declare ( 8 ACTION_CAN_RESTART init (""b), 9 ACTION_CANT_RESTART init ("1"b), 10 ACTION_DEFAULT_RESTART 11 init ("01"b), 12 ACTION_QUIET_RESTART 13 init ("001"b), 14 ACTION_SUPPORT_SIGNAL 15 init ("0001"b) 16 ) bit (36) aligned internal static options (constant); 17 18 /* End include file */