1 /* Begin include file ..... io_log_status_info.incl.pl1 */ 2 3 /* This include file defines a data base used to determine whether or not a 4 particular I/O error should be logged, and whether or not detailed device 5 status should be logged with it. */ 6 /* Prepared December 1979 by Larry Johnson */ 7 8 dcl io_log_status_info$io_log_status_info ext; 9 10 dcl io_log_infop ptr; 11 12 dcl 1 io_log_info aligned based (io_log_infop), 13 2 ndev fixed bin, /* Number of devices in table */ 14 2 log_entry (0 refer (io_log_info.ndev)) like log; 15 16 dcl logp ptr; 17 18 dcl 1 log aligned based (logp), 19 2 dev_name char (3) unal, /* Tap, dsk, prt, etc. */ 20 2 status (0:15, 0:63) bit (1) unal, /* For loggin status */ 21 2 detail (0:15, 0:63) bit (1) unal; /* For logging detaied status */ 22 23 /* End include file io_log_status_info.incl.pl1 */ 24