1 
 2 /*  BEGIN INCLUDE FILE ... device_error.incl.pl1 */
 3 
 4 
 5 /****^  HISTORY COMMENTS:
 6   1) change(88-02-23,Farley), approve(88-02-23,MCR7759),
 7      audit(88-02-24,Fawcett), install(88-03-01,MR12.2-1029):
 8      Added all_paths_bad flag.
 9                                                    END HISTORY COMMENTS */
10 
11 
12 /* Error code produced by disk_control$disk_inter and passed to page control */
13 
14 dcl erfp ptr;
15 
16 dcl 1 errflags based (erfp) aligned,
17    (2 pad bit (29),
18     2 all_paths_bad bit (1),                                /* All paths have been tried and failed */
19     2 memory_unusable bit (1),                              /* Main memory frame bad */
20     2 device_inoperative bit (1),                           /* device cannot be used */
21     2 reassign_address bit (1),                             /* device address cannot be written - try another */
22     2 seg_unusable bit (1),                                 /* segment cannot be accessed */
23     2 please_repeat_call bit (1),                           /* request must be requeued */
24     2 fatal_error bit (1)) unal;                            /* all other errors */
25 
26 /*  END INCLUDE FILE ... device_error.incl.pl1 */
27