Daemon Example in C

lloydrochester.com

18 points by smartmic 21 hours ago


Joker_vD - 6 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.

evanjrowley - 4 hours ago

After taking Intro to C many years ago at university, it's lessons like this I wish they had followed up with.

nesarkvechnep - 7 hours ago

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.

smw - 4 hours ago

RIP Richard Stevens! I owe most of my early career to APUE