I'm try to create a daemon application by following the example :
In the example, there is no operations about the daemon stop.
Therefore, I'm curious about :
- How to send
stop
signal to the daemon ? Or justkill PID
directly ? - If the daemon only can stop on killed, should the daemon itself do the cleaning up operations on killed ? Just like close file descriptors, saving parameters, etc.
Thanks in advance.