1 /* BEGIN INCLUDE FILE ips_mask_data.incl.pl1 */
 2 /* Added all_valid_ips_mask, Benson Margulies 83-12 */
 3 
 4 dcl 1 sys_info$ips_mask_data ext aligned,                   /* structure of mask/name associations for IPS masks */
 5     2 count fixed bin,                                      /* number of ips signals currently in the system */
 6     2 mask (35),
 7       3 name char (32),                                     /* name of the ips signal */
 8       3 mask bit (36);                                      /* has one bit ON, the one for the current ips signal */
 9 
10 dcl sys_info$all_valid_ips_mask bit (36) aligned external;
11 
12 /* END INCLUDE FILE ips_mask_data.incl.pl1 */