mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Kernel: Use IteratorDecision in Process::for_each_in_pgrp()
This commit is contained in:
@@ -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;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user