1      declare                  /* Structure containing information used to control directory_status_ */
 2 
 3 
 4           1 control_info aligned,
 5 
 6             2 caller character(24),                                   /* name of calling command for com_err_ */
 7             2 subtree_status_area_ptr pointer,                        /* points to area for allocations */
 8 
 9             2 sort_type fixed binary(17),                             /* specifies type of sort to perform:
10                                                                          0 - none, 1 - date_time_used,
11                                                                          2 - date_time_modified, 3 - names */
12 
13             2 flags,
14               3 process unaligned,                                    /* specifies if this entry type is listed */
15                 4 segments bit(1),
16                 4 directories bit(1),
17                 4 multi_segment_files bit(1),
18                 4 links bit(1),
19 
20               3 modes unaligned,                                      /* mode of output, walking, etc. */
21                 4 walk bit(1),                                        /* on if walking subtree */
22                 4 brief bit(1),                                       /* if on, do not print expected errors */
23                 4 check_msfs bit(1);                                  /* if on, check if msf is really an msf */
24 
25