1 /* BEGIN INCLUDE FILE ... _imft_fis_info.incl.pl1 */ 2 /* Created: April 1982 by G. Palter */ 3 4 /* Describes the I/O switches on which input is expected: no more than 10 switches may be specified (due to PL/I 5 restrictions on static storage) */ 6 7 dcl 1 fis_info aligned based (fis_info_ptr), 8 2 version character (8), 9 2 n_iocbs fixed binary, /* # of I/O switches */ 10 2 iocbs (10) pointer, /* -> the I/O switches */ 11 2 wait_list, /* ipc_$block input structure */ 12 3 n_channels fixed binary, /* # of IPC channels */ 13 3 pad bit (36), 14 3 event_channels (10) fixed binary (71); /* the channels */ 15 16 dcl fis_info_ptr pointer; 17 18 dcl FIS_INFO_VERSION_1 character (8) static options (constant) initial ("fis_1.00"); 19 20 /* END INCLUDE FILE ... _imft_fis_info.incl.pl1 */