Home | History | Annotate | Download | only in mDNSPosix

Lines Matching defs:daemon

17     File:		daemon.c
24 // In Mac OS X 10.5 and later trying to use the daemon function gives a “‘daemon’ is deprecated”
26 // Since this is supposed to be portable cross-platform code, we don't care that daemon is
28 #define daemon yes_we_know_that_daemon_is_deprecated_in_os_x_10_5_thankyou
43 #undef daemon
44 extern int daemon(int, int);
49 #include "mDNSUNP.h" // For daemon()
71 // On successful registration of dot-local mDNS host name, daemon may want to check if
89 // %%% Reconfigure() probably belongs in the platform support layer (mDNSPosix.c), not the daemon cde
91 // not only the Unix Domain Socket Daemon
119 int result = daemon(0, 0);
120 if (result != 0) { LogMsg("Could not run as daemon - exiting"); exit(result); }