previous | start | next

SIGCONT signal

Your shell should be able to stop the foreground process if the user types ctrl-z.

Your shell can do this by forwarding the SIGTSTP signal to the foreground job.

The signal should be forwarded to all processes in the foreground job, not just the process group leader.

To restart the job later when the shell command is fg or bg, send a SIGCONT signal to all processes in the process group of the stopped job.



previous | start | next