Daemons carry out specific and specialized tasks e.g. command scheduling (cron), ensuring secure remote logins (sshd) and listening to incoming network connections (inetd). Many system daemons work as privileged programs, making it necessary for them to follow the rules that accompany privileges.
For a program to become a daemons, the fork() function needs to run, making the child process run and the parent to exit. The former becomes a child process of init(), and needs to call setsid() after that, to free itself from any control terminal. Consequently, the becomeDaemon() function needs to be implemented, turning the calling program into a daemon.
Read more: Prescott Linux
QR: