1 
 2 /* Begin include file ...... wire_proc_data.incl.pl1
 3           Extracted from sst.incl.pl1 8/3/76 by Noel I. Morris */
 4 
 5 dcl  wpdp ptr;                                              /* pointer to data */
 6 
 7 dcl 1 wpd based (wpdp) aligned,
 8     2 temp_w_lock bit (36),                                 /* lock for the temp wired procedure info */
 9     2 temp_w_max fixed bin (17),                            /* the maximum index currently in use */
10     2 temp_w (7) like twe;                                  /* one two word entry per temp wired procedure */
11 
12 dcl  twep ptr;                                              /* pointer to table entry */
13 
14 dcl 1 twe based (twep) aligned,                             /* entry for temp wired procedure */
15    (2 segno bit (18),                                       /* segment number that is temp wired */
16     2 count bit (18),                                       /* count of number of outstanding wire calls */
17     2 linkno bit (18),                                      /* segment number of the linkage segment */
18     2 flp bit (8),                                          /* first page of linkage segment for this procedure */
19     2 llp bit (8),                                          /* last page of linkage segment for this procedure */
20     2 link_w bit (1),                                       /* bit is on if linkage is permanently wired */
21     2 seg_w bit (1)) unaligned;                             /* bit is on if procedure is permanently wired */
22 
23 /* End of include file ...... wire_proc_data.incl.pl1 */
24