I am writing a daemon in c on linux. It traps signals SIGHUP, SIGTERM, SIGINT, and SIGQUIT, logs them using syslog and quits. If it receives SIGSEGV it core dumps. When these occur everything happens as expected but once in a while it quits...does not exit cleanly, does not log the signal, and does not leave a core dump. I am stumped and not sure how to debug the problem. What ways can it quit other than these signals? Is there an obvious answer, something that I am missing? What other debugging practices do you recommend to debug such a seemingly sporadic problem in a daemon process?
|
feedback
|
|
If your daemon is working with network sockets, it's quite likely to be | |||||
feedback
|
|
You can have the parent of the daemon stay around and wait for it, and then have the parent log the reason for the daemon quitting (ie, whether it was signalled or it exited). | |||||
feedback
|
|
Attach gdb to it with
Make sure you compiled with the -g flag and take a backtrace as soon as it exits.
Good luck!
| |||
feedback
|
|
Well, there are lots of other signals that will cause it to quit, including of course
| |||
|
feedback
|
|
A shell wrapper can catch your daemon's exit status. Here's how it works:
... and here's how it's implemented:
You might want to change that last | |||
|
feedback
|