Daemon Example in C
lloydrochester.com18 points by smartmic 21 hours ago
18 points by smartmic 21 hours ago
> We’ll go into the SysV recommendation of “double forking”
SysV init can not handle daemons that double-fork. Neither could BSDs up until somewhat recently. Just let your systems "service manager" deal with that on your own, seriously: don't reimplement this functionality; one program to do one thing, etc.
After taking Intro to C many years ago at university, it's lessons like this I wish they had followed up with.
These days I've been using the `daemon` utility in FreeBSD whenever I need to run some long running program as a daemon. This allows me to not even bother with flags, double forks and so on.
RIP Richard Stevens! I owe most of my early career to APUE