Lines Matching refs: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
42 #undef daemon
43 extern int daemon(int, int);
48 #include "mDNSUNP.h" // For daemon()
69 // On successful registration of dot-local mDNS host name, daemon may want to check if
87 // %%% Reconfigure() probably belongs in the platform support layer (mDNSPosix.c), not the daemon cde
116 int result = daemon(0, 0);
117 if (result != 0) { LogMsg("Could not run as daemon - exiting"); exit(result); }