1 /* BEGIN include file ptw_info.incl.pl1 */
 2 
 3 /* Description of the info returned by ptw_util_$dissect.
 4 Keith Loepere, October 1983. */
 5 
 6 /* format: style4,indattr,ifthenstmt,ifthen,idind33,^indcomtxt */
 7 
 8 dcl  ptw_info_ptr                     ptr;
 9 
10 dcl  1 ptw_info                       aligned based (ptw_info_ptr),
11        2 address                      fixed bin (26),       /* memory or device number */
12        2 add_type                     bit (4) unal,
13        2 null_disk                    bit (1) unal,
14        2 er                           bit (1) unal,
15        2 wired                        bit (1) unal,
16        2 os                           bit (1) unal,
17        2 phu1                         bit (1) unal,         /* used in quantum */
18        2 phm1                         bit (1) unal,         /* modified in quantum */
19        2 valid                        bit (1) unal,
20        2 phu                          bit (1) unal,
21        2 phm                          bit (1) unal;
22 
23 /* END include file ptw_info.incl.pl1 */