mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 22:15:06 +00:00
Shell: Restore the terminal PGID before printing out job status on exit
This fixes the assert tripping when interrupting a foreground job. Also make `bg` mark the job as 'should announce exit'.
This commit is contained in:
parent
350b2c6d9e
commit
a2879f53c8
2 changed files with 3 additions and 0 deletions
|
@ -871,6 +871,8 @@ RefPtr<Job> Shell::run_command(const AST::Command& command)
|
|||
job->on_exit = [this](auto job) {
|
||||
if (!job->exited())
|
||||
return;
|
||||
|
||||
restore_ios();
|
||||
if (job->is_running_in_background() && job->should_announce_exit())
|
||||
warnln("Shell: Job {} ({}) exited\n", job->job_id(), job->cmd().characters());
|
||||
else if (job->signaled() && job->should_announce_signal())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue