Some minor termios debugging output.

This commit is contained in:
Andreas Kling 2018-11-12 12:27:28 +01:00
commit 1cf20a2fe2
Notes: sideshowbarker 2024-07-19 16:10:58 +09:00
3 changed files with 16 additions and 5 deletions

View file

@ -57,3 +57,12 @@ void TTY::interrupt()
});
}
}
void TTY::set_termios(const Unix::termios& t)
{
m_termios = t;
dbgprintf("%s set_termios: IECHO? %u, ISIG? %u\n",
ttyName().characters(),
should_echo_input(),
should_generate_signals());
}