mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +00:00
Kernel: Give each TTY 1 KB of input buffer
This papers over an immediate issue where pseudoterminals would choke on more than 16 characters of pasted input in the GUI terminal. Longer-term we should find a more elegant solution than using a static size CircularQueue for this.
This commit is contained in:
parent
32810a920f
commit
5768b384b9
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ private:
|
||||||
// ^CharacterDevice
|
// ^CharacterDevice
|
||||||
virtual bool is_tty() const final override { return true; }
|
virtual bool is_tty() const final override { return true; }
|
||||||
|
|
||||||
CircularQueue<u8, 16> m_input_buffer;
|
CircularQueue<u8, 1024> m_input_buffer;
|
||||||
pid_t m_pgid { 0 };
|
pid_t m_pgid { 0 };
|
||||||
termios m_termios;
|
termios m_termios;
|
||||||
unsigned short m_rows { 0 };
|
unsigned short m_rows { 0 };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue