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
42 #undef daemon
43 extern int daemon(int, int);
48 #include "mDNSUNP.h" // For daemon()
73 // On successful registration of dot-local mDNS host name, daemon may want to check if
91 // %%% Reconfigure() probably belongs in the platform support layer (mDNSPosix.c), not the daemon cde
93 // not only the Unix Domain Socket Daemon
120 int result = daemon(0, 0);
121 if (result != 0) { LogMsg("Could not run as daemon - exiting"); exit(result); }