Hacker News new | ask | show | jobs
by deafbybeheading 4647 days ago
Not to mention the program sigkills itself before it attempts to `exit 0`...
1 comments

Genuine question - can a process kill itself?

The kill of go-reload was to make sure background processes get cleaned up, but I suspect one of the kill or exit in the close function is superfluous.

> Genuine question - can a process kill itself?

Sure. Send the signal, the signal handler - custom or default - handles it. This works whether the signal comes from another process or its own process.