diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-12-01 21:51:10 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-12-01 21:51:10 +0000 |
commit | 52c83ef62377aad8feb1641fa4ebd518f216fbc0 (patch) | |
tree | cd1e8a157483dd5653810b6f9525e1f20dfb6c16 /term | |
parent | 32388a4b3eadacd01a35251b2650410c12145bd8 (diff) |
(ptyio_bottom, pty_class): New variables.
Diffstat (limited to 'term')
-rw-r--r-- | term/term.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/term/term.h b/term/term.h index f1e6213f..c84446b4 100644 --- a/term/term.h +++ b/term/term.h @@ -86,6 +86,9 @@ struct port_class *tty_class; /* Port class for ctty ID ports */ struct port_class *cttyid_class; +/* Port class for pty master ports */ +struct port_class *pty_class; + /* Trivfs control structure for the tty */ struct trivfs_control *termctl; @@ -116,7 +119,7 @@ struct bottomhalf }; struct bottomhalf *bottom; -extern struct bottomhalf devio_bottom; +extern struct bottomhalf devio_bottom, ptyio_bottom; /* Character queues */ |