mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:18:12 +00:00
Kernel: Use IteratorDecision in Process::for_each_in_pgrp()
This commit is contained in:
parent
748b38d80f
commit
06de0e670c
3 changed files with 3 additions and 3 deletions
|
@ -89,7 +89,7 @@ void TTY::generate_signal(int signal)
|
|||
Process::for_each_in_pgrp(pgid(), [&](auto& process) {
|
||||
dbgprintf("%s: Send signal %d to %d\n", tty_name().characters(), signal, process.pid());
|
||||
process.send_signal(signal, nullptr);
|
||||
return true;
|
||||
return IterationDecision::Continue;
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue