1 2 /* format: style3 */ 3 4 /**** Statictics from an mstb that the manager thereof 5 might need to know. */ 6 7 declare mstb_status_ptr pointer; 8 declare 1 mstb_status aligned based (mstb_status_ptr), 9 2 version fixed bin, 10 2 (total_entries, deleted_entries, used_entries) 11 fixed bin (35), 12 2 meters, 13 3 searches fixed bin (35), 14 3 entries_examined 15 fixed bin (35); 16 17 declare MSTB_STATUS_VERSION_1 18 fixed bin init (1) int static options (constant); 19 20 /* End include file ms_table_status.incl.pl1 */