r22372: split out become_daemon() into it's own function
authorStefan Metzmacher <metze@samba.org>
Thu, 19 Apr 2007 14:14:11 +0000 (14:14 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:51:09 +0000 (14:51 -0500)
this remove the dependency of util.o to swrap_close
which causes sometrouble with the pidl tests
on some hosts

metze
(This used to be commit 8cd36c47aaf1098876bceb314cb0a1f39369cb46)

source4/lib/util/config.mk
source4/lib/util/util.c

index cda42c105a1bfe5f06c4ec8bd8f56e9c756faaa8..5ec110e68dce6a2b05a08fae01106138c228816a 100644 (file)
@@ -26,7 +26,8 @@ OBJ_FILES = xfile.o \
                ms_fnmatch.o \
                mutex.o \
                idtree.o \
-               module.o
+               module.o \
+               become_daemon.o
 PUBLIC_DEPENDENCIES = \
                LIBTALLOC LIBCRYPTO \
                SOCKET_WRAPPER EXT_NSL \
index afa9adbc188e7bf1e911992a3c89122617832ed8..b0eebb0bc7f3336c53ba8d81b078f492b79c77d1 100644 (file)
@@ -141,42 +141,6 @@ _PUBLIC_ BOOL directory_create_or_exist(const char *dname, uid_t uid,
 }       
 
 
-/*******************************************************************
- Close the low 3 fd's and open dev/null in their place.
-********************************************************************/
-static void close_low_fds(BOOL stderr_too)
-{
-#ifndef VALGRIND
-       int fd;
-       int i;
-
-       close(0);
-       close(1); 
-
-       if (stderr_too)
-               close(2);
-
-       /* try and use up these file descriptors, so silly
-               library routines writing to stdout etc won't cause havoc */
-       for (i=0;i<3;i++) {
-               if (i == 2 && !stderr_too)
-                       continue;
-
-               fd = open("/dev/null",O_RDWR,0);
-               if (fd < 0)
-                       fd = open("/dev/null",O_WRONLY,0);
-               if (fd < 0) {
-                       DEBUG(0,("Can't open /dev/null\n"));
-                       return;
-               }
-               if (fd != i) {
-                       DEBUG(0,("Didn't get file descriptor %d\n",i));
-                       return;
-               }
-       }
-#endif
-}
-
 /**
  Set a fd into blocking/nonblocking mode. Uses POSIX O_NONBLOCK if available,
  else
@@ -223,36 +187,6 @@ _PUBLIC_ void msleep(unsigned int t)
        select(0,NULL,NULL,NULL,&tval);
 }
 
-/**
- Become a daemon, discarding the controlling terminal.
-**/
-
-_PUBLIC_ void become_daemon(BOOL Fork)
-{
-       if (Fork) {
-               if (fork()) {
-                       _exit(0);
-               }
-       }
-
-  /* detach from the terminal */
-#ifdef HAVE_SETSID
-       setsid();
-#elif defined(TIOCNOTTY)
-       {
-               int i = open("/dev/tty", O_RDWR, 0);
-               if (i != -1) {
-                       ioctl(i, (int) TIOCNOTTY, (char *)0);      
-                       close(i);
-               }
-       }
-#endif /* HAVE_SETSID */
-
-       /* Close fd's 0,1,2. Needed if started by rsh */
-       close_low_fds(False);  /* Don't close stderr, let the debug system
-                                 attach it to the logfile */
-}
-
 /**
  Get my own name, return in malloc'ed storage.
 **/