1 /* IO daemon tables for a system with two printers, one punch, a reader */
 2 /* and a remote g115 */
 3 
 4 Max_queues:         3;
 5 
 6 Time:               60;
 7 
 8 /* Service printer */
 9 
10 Device:             prta;
11   driver_module:    printer_driver_;
12   prph:             prta;
13   default_type:     printer;
14 
15 Device:             prtb;
16   driver_module:    printer_driver_;
17   prph:             prtb;
18   default_type:     printer;
19 
20 Device:             rdra;               /* Station ID is default, "reader" */
21   driver_module:    reader_driver_;
22   prph:             rdra;
23   default_type:     dummy;
24 
25 Request_type:       printer;            /* standard printer output */
26   generic_type:     printer;
27   device:           prta;
28   device:           prtb;
29 
30 Request_type:       unlined;            /* for unlined paper */
31   generic_type:     printer;
32   device:           prta;
33   device:           prtb;
34 
35 Request_type:       8by11;              /* for 8 1/2 by 11 paper */
36   generic_type:     printer;
37   device:           prta;
38   device:           prtb;
39 
40 Request_type:       11by8;              /* for 11 by 8 1/2 paper */
41   generic_type:     printer;
42   device:           prta;
43   device:           prtb;
44 
45 /* Card punch */
46 
47 Device:             puna;
48   driver_module:    punch_driver_;
49   prph:             puna;
50   default_type:     punch;
51 
52 Request_type:       punch;
53   generic_type:     punch;
54   device:           puna;
55 
56 /* Remote G115 */
57 
58 Device:             Station;
59   driver_module:    remote_driver_;
60   line:             variable;
61 
62  minor_device:      prt;
63    minor_args:      dev=printer;
64                     /* no default type has been specified */
65 
66  minor_device:      pun;
67    minor_args:      dev=punch;
68    default_type:    st_pun;
69 
70  minor_device:      rdr;
71    minor_args:      dev=reader;
72    default_type:    st_prt;   /* just a dummy entry */
73 
74 Line:               g115_1;
75   channel:          a.h207;
76   att_desc:         "-tty ^a -terminal g115_ -comm rci -ascii -delay 1500000 -ttp G115";
77   device:           Station;
78 
79 Request_type:       st_prt;
80   generic_type:     printer;
81   driver_userid:    IO.Multics;         /* example */
82   accounting:       >udd>Multics>IO>station_acct_; /* example */
83   device:           Station.rdr;
84   device:           Station.prt;
85 Request_type:       st_pun;
86   generic_type:     punch;
87   driver_userid:    IO.Multics;         /* example */
88   accounting:       >udd>Multics>IO>station_acct_; /* example */
89   device:           Station.pun;
90 
91 Request_type:       dummy;
92   generic_type:     none;
93   device:           rdra;
94   max_queues:       1;
95 End;