Hacker News new | ask | show | jobs
by habosa 4520 days ago
Not always. The kill system call can be used to send any signal, it's just got a name that implies you're sending something like SIGKILL or SIGTERM. I have written C programs that use kill for harmless inter-process communication.
1 comments

SIGUSER is quite common for that. Or SIGHUP.
By convention, SIGHUP is used by daemons to signal a change of configuration.