mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 22:05:06 +00:00
Shell: Don't assume that only the current shell may continue children
That can happen because of anyone sending the process a SIGCONT. Fixes an issue where continuing a process launched by the shell from the System Monitor would cause the shell to spin on waitpid().
This commit is contained in:
parent
459aa44f6b
commit
124ca30d49
1 changed files with 4 additions and 3 deletions
|
@ -1759,10 +1759,11 @@ void Shell::notify_child_event()
|
|||
}
|
||||
if (child_pid == 0) {
|
||||
// If the child existed, but wasn't dead.
|
||||
if (job.is_suspended() && job.shell_did_continue()) {
|
||||
// The job was suspended, and we sent it a SIGCONT.
|
||||
if (job.is_suspended() || job.shell_did_continue()) {
|
||||
// The job was suspended, and someone sent it a SIGCONT.
|
||||
job.set_is_suspended(false);
|
||||
job.set_shell_did_continue(false);
|
||||
if (job.shell_did_continue())
|
||||
job.set_shell_did_continue(false);
|
||||
found_child = true;
|
||||
}
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue