1
2
3 dcl flush_consecp ptr;
4 dcl flushp ptr;
5
6 dcl 1 flush_consec aligned based (flush_consecp),
7 2 version fixed bin,
8 2 n_segs fixed bin,
9 2 seg (0 refer (flush_consec.n_segs)) aligned,
10 3 segno fixed bin (15),
11 3 first_page fixed bin,
12 3 n_pages fixed bin;
13
14 dcl 1 flush aligned based (flushp),
15 2 version fixed bin,
16 2 n_pages fixed bin,
17 2 seg_page (0 refer (flush.n_pages)),
18 3 seg_no fixed bin (17) unaligned,
19 3 page_no fixed bin (17) unaligned;
20
21 dcl (FLUSH_CONSEC_VERSION_1 init (1),
22 FLUSH_VERSION_1 init (1)) fixed bin internal static options (constant);
23
24