1 /* BEGIN INCLUDE FILE iod_line_tab.incl.pl1 */ 2 3 4 5 /****^ HISTORY COMMENTS: 6 1) change(88-01-27,Brunelle), approve(), audit(), install(): 7 Ancient History 8 Created by J. C. Whitmore Oct 1978 9 2) change(88-02-18,Brunelle), approve(88-08-31,MCR7911), 10 audit(88-09-29,Wallman), install(88-10-28,MR12.2-1199): 11 Upgraded to version 5. Added comment field and changed att_desc from 12 string to text_offset. 13 END HISTORY COMMENTS */ 14 15 16 /* format: style4 */ 17 18 dcl ltp ptr; 19 dcl 1 line_tab aligned based (ltp), /* the line id table */ 20 2 n_lines fixed bin, /* number of line id entries */ 21 2 pad fixed bin, /* for the future */ 22 2 entries (1 refer (line_tab.n_lines)) like lte; 23 24 dcl ltep ptr; /* line table entry pointer */ 25 dcl 1 lte aligned based (ltep), /* line table entry */ 26 2 line_id char (24), /* logical id for a tty line */ 27 2 comment unaligned like text_offset, /* comment to apply to the line */ 28 2 chan_id char (32), /* the physical channel name for attachment */ 29 2 att_desc unaligned like text_offset, /* the attach description to use */ 30 2 maj_dev_list bit (360); /* bit i ON => major device i is valid for this line id */ 31 32 33 /* END INCLUDE FILE iod_line_tab.incl.pl1 */