Hacker News new | ask | show | jobs
by jwilk 2832 days ago
Neither "kill -SIGSTOP" nor "kill -17" is portable. (In fact 17 is SIGCHLD on x86 Linux…)

You should use "kill -STOP".

1 comments

Fixed, thank you for pointing that.
The blog post still uses "kill -17" and "kill -19".