Y
Hacker News
new
|
ask
|
show
|
jobs
by
Uplink
2832 days ago
I'm nitpicking, but is there a reason why you use the numeric signal number in Linux? On my machine "kill -SIGSTOP" works as expected, and I don't remember a time when you couldn't use signal names like that.
1 comments
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".
link
vermaden
2832 days ago
Fixed, thank you for pointing that.
link
jwilk
2831 days ago
The blog post still uses "kill -17" and "kill -19".
link
You should use "kill -STOP".