mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Add fields to struct tty for the initial/lock * tty/cua states.
This commit is contained in:
parent
a49513587b
commit
8cf25bb9be
1 changed files with 4 additions and 0 deletions
|
|
@ -100,6 +100,10 @@ struct tty {
|
|||
struct selinfo t_rsel; /* Tty read/oob select. */
|
||||
struct selinfo t_wsel; /* Tty write select. */
|
||||
struct termios t_termios; /* Termios state. */
|
||||
struct termios t_init_in; /* ... init ingoing */
|
||||
struct termios t_init_out; /* ... outgoing */
|
||||
struct termios t_lock_in; /* ... lock ingoing */
|
||||
struct termios t_lock_out; /* ... outgoing */
|
||||
struct winsize t_winsize; /* Window size. */
|
||||
void *t_sc; /* driver private softc pointer. */
|
||||
int t_column; /* Tty output column. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue