1 /* BEGIN INCLUDE FILE ... mlsys_hash_tables_seg.incl.pl1 */ 2 /* Created: August 1983 by G. Palter */ 3 4 /* Definition of the hash tables used by the mail system */ 5 6 dcl 1 hash_tables_segment aligned based (mlsys_data_$hash_tables_segment_ptr), 7 2 field_name_hash_table, /* hash table for user-defined fields */ 8 3 buckets (0:511) pointer, 9 2 message_id_hash_table, /* hash table for non-local Message-IDs */ 10 3 buckets (0:511) pointer, 11 2 hash_area area; /* area where actual slots are allocated */ 12 13 /* END INCLUDE FILE ... mlsys_hash_tables_seg.incl.pl1 */