1 2 declare /* Structures used in acl manipulation. - J.M. Broughton 07/27/73 */ 3 4 5 1 segment_acl (acl_count) based (acl_ptr) aligned, 6 2 access_name character (32), /* process to which this entry applies */ 7 2 modes bit (36), /* read, execute, and write */ 8 2 zero_pad bit (36), /* for extended acl */ 9 2 status_code fixed bin(35), /* standard error code for this entry only */ 10 11 12 1 dir_acl (acl_count) based (acl_ptr) aligned, 13 2 access_name character (32), /* process to which entry applys */ 14 2 dir_modes bit (36), /* status, modify, and append */ 15 2 status_code fixed bin(35), /* as above */ 16 17 18 acl_count fixed bin, /* number of entries in these structures */ 19 acl_ptr pointer; /* pointer to these structures */ 20 21