1 /*     BEGIN INCLUDE FILE ... dmpr_input.incl.pl1 ... last modified Dec 1975 */
 2 
 3 
 4 /****^  HISTORY COMMENTS:
 5   1) change(88-05-27,GWMay), approve(88-05-27,MCR7883),
 6      audit(88-06-14,Beattie), install(88-07-19,MR12.2-1061):
 7      Added Sfirst_pass_for_pv bit and time stamp variables for use in
 8      processing inconsistent dumper bit maps.
 9                                                    END HISTORY COMMENTS */
10 
11 
12 /* Input structure for supervisor interface for dumper */
13 
14 dcl  inputp ptr;
15 
16 dcl  dmpr_input_version_1 internal static init (1) options (constant);
17 
18 dcl 1 dmpr_input based (inputp) aligned,
19     2 version fixed bin,                                    /* version number of structure */
20     2 pvid bit (36),                                        /* physical volume id of volume to dump */
21     2 type fixed bin,                                       /* type of dump */
22     2 flags,
23      (3 reset bit (1),                                      /* if on forces reseting in control bit map */
24       3 no_update bit (1),                                  /* if on do not update vtoce (dtd and volid ) */
25       3 no_object bit (1),                                  /* if on do not return object */
26       3 retry bit (1),                                      /* if on indicates a retry of prev aborted call */
27       3 request bit (1),                                    /* if on indicates caller will control what to dump */
28       3 Sfirst_pass_for_pv bit (1),                         /* on = read disk label */
29       3 pad bit (29))unal,
30     2 prev_vtocx fixed bin,                                 /* vtoc index of previously dumped vtocx */
31     2 request_vtocx fixed bin,                              /* vtocx to be dumped if request mode enabled */
32     2 volid bit (36),                                       /* volume id on which dump will be written */
33     2 start_time fixed bin (71),                            /* start time of this cycle */
34     2 mod_after_time fixed bin (71),                        /* time to check dtm against  */
35     2 last_incr_dump_time fixed bin (71),
36     2 last_cons_dump_time fixed bin (71);
37 
38 /*     END INCLUDE FILE ... dmpr_input.incl.pl1 ...  */