Some refactor and style tweaks.

This commit is contained in:
Andreas Kling 2018-11-07 21:38:18 +01:00
parent 03a8357e84
commit 6304c771dd
Notes: sideshowbarker 2024-07-19 18:32:17 +09:00
7 changed files with 103 additions and 113 deletions

View file

@ -50,6 +50,7 @@ void TTY::interrupt()
Process::for_each_in_pgrp(pgid(), [this] (auto& process) {
dbgprintf("%s: Send SIGINT to %d\n", ttyName().characters(), process.pid());
process.send_signal(SIGINT, nullptr);
return true;
});
}
}