1
2
3
4 dcl cq_limit static options (constant) fixed bin init (200);
5
6 dcl cqp ptr;
7
8 dcl 1 cq aligned based (cqp),
9 2 lock bit (36) aligned,
10 2 lockings fixed bin,
11 2 overflows fixed bin,
12 2 number_in_queue fixed bin,
13
14 2 looplock_time fixed bin (52),
15 2 process_time fixed bin (52),
16
17 2 put_ptr bit (18) aligned,
18 2 get_ptr bit (18) aligned,
19 2 queueings fixed bin,
20
21 2 pad2 (5) fixed bin,
22
23 2 queue (0:199),
24 3 coreadd fixed bin (24) aligned,
25 3 errcode bit (36) aligned;
26
27