diff options
Diffstat (limited to 'Kernel/TTY.h')
-rw-r--r-- | Kernel/TTY.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/TTY.h b/Kernel/TTY.h index eb1f18d74f..699dc1ea6d 100644 --- a/Kernel/TTY.h +++ b/Kernel/TTY.h @@ -29,6 +29,8 @@ public: bool should_echo_input() const { return m_termios.c_lflag & ECHO; } bool in_canonical_mode() const { return m_termios.c_lflag & ICANON; } + void set_default_termios(); + protected: virtual void on_tty_write(const byte*, size_t) = 0; void set_size(unsigned short columns, unsigned short rows); |