1 /* BEGIN include file dbr_info.incl.pl1 */
 2 
 3 /* This include file describes the structure returned by dbr_util_$dissect.
 4 Keith Loepere, October 1983. */
 5 
 6 /* format: style4,indattr,ifthenstmt,ifthen,idind33,^indcomtxt */
 7 
 8 dcl  dbr_info_ptr                     ptr;
 9 
10 dcl  1 dbr_info                       aligned based (dbr_info_ptr),
11        2 address                      fixed bin (26),       /* of dseg or dseg page table */
12        2 bound                        fixed bin (18),       /* length of dseg in words */
13        2 stack_base_segnum            fixed bin (15),       /* segment number of ring 0 stack */
14        2 paged                        bit (1);              /* is dseg paged? */
15 
16 /* END include file dbr_info.incl.pl1 */