mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:37:45 +00:00
parent
9687f1801b
commit
59c37363b6
1 changed files with 5 additions and 0 deletions
|
@ -65,6 +65,11 @@ void TTY::emit(byte ch)
|
|||
generate_signal(SIGQUIT);
|
||||
return;
|
||||
}
|
||||
if (ch == m_termios.c_cc[VSUSP]) {
|
||||
dbgprintf("%s: VSUSP pressed!\n", tty_name().characters());
|
||||
generate_signal(SIGTSTP);
|
||||
return;
|
||||
}
|
||||
}
|
||||
m_buffer.write(&ch, 1);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue