SIGCONT は、以前に SIGSTOP によって停止されたプロセスを続行することを知っています。SIGSTOP なしで SIGCONT を複数回使用できますか? つまり、以下のシーケンスは有効ですか?
SIGSTOP to process A : The process stops
SIGCONT to process A : Process resumes
SIGCONT to process A : Process already runs - this SIGCONT has no effect
SIGCONT to process A : Process already runs - this SIGCONT has no effect
...
SIGSTOP to process A : The process stops
SIGCONT to process A : Process resumes