1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00

Some minor termios debugging output.

This commit is contained in:
Andreas Kling 2018-11-12 12:27:28 +01:00
parent f1404aa948
commit 1cf20a2fe2
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());
}