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:
parent
f1404aa948
commit
1cf20a2fe2
3 changed files with 16 additions and 5 deletions
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue