1 /* Begin include file ms_table_info.incl.pl1 */ 2 /* Written by C. Hornig, June 1979 */ 3 /* Modified by B. Margolin, July 1983, for version 2 */ 4 /* Modified 1984-07-24 BIM for V3, improved hash, checksums */ 5 6 /* This information is passed to ms_table_mgr_$create when a multi-segment 7 table is created. */ 8 9 /* format: style3 */ 10 11 declare MS_TABLE_INFO_VERSION_3 12 fixed init (3) internal static options (constant); 13 14 declare 1 ms_table_info aligned based, 15 2 version fixed, /* Should be 3 */ 16 2 type character (32), /* what table is this? */ 17 2 ( 18 header_size, /* length of table header in words */ 19 entry_size 20 ) unsigned fixed (18), /* same for table entries */ 21 2 max_entries unsigned fixed bin (18), /* how many entries */ 22 2 max_size fixed bin (19), /* max segment length */ 23 2 keep_meters bit (1) aligned; /* table is writable to readers */ 24 25 /* End include file ms_table_info.incl.pl1 */