1 /* BEGIN INCLUDE FILE dm_ci_lengths.incl.pl1 */ 2 3 /* DESCRIPTION: 4 This include file contains constants which are the length in bytes 5 of the addressable portion of a control interval. The addressable portion 6 is that part of the control interval which callers of file_manager_ 7 may access, specifically, everything between the end of the control 8 interval header (ci_header) and the control interval trailer (ci_trailer). 9 Control interval 0 is slightly different, as it also contains an 10 unaddressable portion in which it maintains the file attributes. For 11 control interval 0 the addressable portion is everything between the end 12 of the control interval header and the beginning of the file attributes. 13 */ 14 15 /* HISTORY: 16 Written by Matthew Pierret, 11/02/84. 17 Modified: 18 */ 19 20 /* format: style2,ind3 */ 21 22 dcl CONTROL_INTERVAL_ADDRESSABLE_LENGTH_IN_BYTES 23 fixed bin (17) init (4072) int static options (constant); 24 25 dcl CONTROL_INTERVAL_ZERO_ADDRESSABLE_LENGTH_IN_BYTES 26 fixed bin (17) init (3176) int static options (constant); 27 28 29 dcl CI_ADDRESSABLE_LENGTH fixed bin (17) init (4072) int static options (constant); 30 31 dcl CI_0_ADDRESSABLE_LENGTH 32 fixed bin (17) init (3176) int static options (constant); 33 34 /* END INCLUDE FILE dm_ci_lengths.incl.pl1 */