1
2
3
4
5
6
7 dcl 1 net_surv aligned based(order_pr),
8 2 ncp_ev_chan fixed bin(71),
9 2 ncp_procid bit(36),
10 2 ncp_up fixed bin,
11 2 (htbl_size, rtbl_size, stbl_size) fixed bin,
12 2 (htbl_gent, rtbl_gent, stbl_gent) fixed bin,
13 2 (htbl_lock, rtbl_lock, stbl_lock) bit(36);
14
15
16
17 dcl 1 host_surv aligned based(order_pr),
18 2 tbl_len fixed bin,
19 2 host_tbl(1000) aligned,
20 3 index fixed bin,
21 3 hlock bit(36),
22 3 (rlkidx, wlkidx) bit(18) unaligned,
23 3 rlinkn(32) bit(1) unaligned,
24 3 host_id bit(9);
25
26
27
28 dcl 1 rfc_surv aligned based(order_pr),
29 2 tbl_len fixed bin,
30 2 rfc_tbl(1000) aligned,
31 3 index fixed bin,
32 3 fsocq bit(41),
33 3 linkq bit(18) unaligned,
34 3 queuen bit(18) unaligned;
35
36
37
38 dcl 1 sock_surv aligned based(order_pr),
39 2 tbl_len fixed bin,
40 2 sock_tbl(1000) aligned,
41 3 index fixed bin,
42 3 lsoc bit(41),
43 3 state bit(6),
44 3 procid bit(36),
45 3 oprocid bit(36);
46
47
48
49 dcl 1 sock_data aligned based (order_pr),
50 2 soct aligned,
51 3 evchn fixed bin(71),
52 3 oevchn fixed bin(71),
53 3 lock bit(36),
54 3 procid bit(36),
55 3 oprocid bit(36),
56 3 balloc fixed bin(32),
57 3 malloc fixed bin(16),
58 3 lsoc bit(41),
59 3 fsoc bit(41),
60 3 queue bit(18) unaligned,
61 3 linkn bit(18) unaligned,
62 3 ctl_idx bit(18) unaligned,
63 3 com_idx bit(18) unaligned,
64 3 state bit(6) unaligned,
65 3 byte bit(8) unaligned,
66 3 r_w bit(1) unaligned,
67
68 3 int_ok bit(1) unaligned,
69
70 3 deac_sw bit(1) unaligned,
71
72 2 tbl_len fixed bin,
73 2 rfc_tbl(1000) aligned,
74 3 index fixed bin,
75 3 fsocq bit(41),
76 3 linkq bit(18) unaligned,
77 3 queuen bit(18) unaligned;
78
79
80