1 /* BEGIN INCLUDE FILE: dm_bj_pn_table.incl.pl1 */ 2 /* 3 This vector relates a BJ UID to its pathname. 4 5 Written by Andre Bensoussan June/July 1982 6 Modified: 7 09/29/82 by Lee A. Newcomb: To make word aligned, convert to use 8 dm_system_data_$bj_max_n_journals, and store max_n_entries 9 for use with crash recovery. 10 */ 11 /* format: style4,indattr,idind33,^indcomtxt */ 12 13 dcl bj_pn_table_ptr ptr; 14 15 dcl 1 bj_pn_table based (bj_pn_table_ptr) aligned, 16 2 max_n_entries fixed bin, /* know how long the table is for crash recovery */ 17 2 bj_path_to_uid_relation dim (dm_system_data_$bj_max_n_journals refer (bj_pn_table.max_n_entries)), 18 3 dir char (168), 19 3 entry char (32), 20 3 bj_uid bit (36); 21 22 /* END INCLUDE FILE: dm_bj_pn_table.incl.pl1 */