.title qiodef Qio definitions .ident "V02.00" ;+ ; Index QIO definitions ; ; Usage ; ; Description ; ; Header file for CS library routines. Defines the terminal ; and file server QIO directive parameter blocks, LUNs, IOSBs ; and event flags. ; ; Terminal lun tty.lun == 1 ; File server LUN fs.lun == 5 ; I/O event flag eflag == 2 ; ; Terminal QIO IOSB t.iosb ; File Server IOSB f.iosb ; ; Terminal QIO DPB ttqio ; File Server QIO DPB fsqio ; ;- ; Edit History ; V02.00 19-Oct-82 TTC Rework of old CS library ; .mcall qio$ .psect c$data ; ; LUN and event flag definitions ; tty.lun == 1 ; TTY lun fs.lun == 5 ; File server LUN eflag == 2 ; I/O wait event flag ; ; I/O status blocks for the terminal and ; file server QIO's. ; t.iosb:: .blkw 2 f.iosb:: .blkw 2 ; ; File server and terminal QIOs. ; fsqio:: QIO$ ,fs.lun,eflag,,f.iosb ttqio:: QIO$ ,tty.lun,eflag,,t.iosb .end