3 * Copyright (C) 1997, 1999 Kunihiro Ishiguro
5 * This file is part of GNU Zebra.
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
27 /* Daemonize myself. */
29 daemon (int nochdir
, int noclose
)
35 /* In case of fork is error. */
38 zlog_err ("fork failed: %s", safe_strerror(errno
));
42 /* In case of this is parent process. */
46 /* Become session leader and get pid. */
51 zlog_err ("setsid failed: %s", safe_strerror(errno
));
55 /* Change directory to root. */
59 /* File descriptor close. */
64 fd
= open ("/dev/null", O_RDWR
, 0);
67 dup2 (fd
, STDIN_FILENO
);
68 dup2 (fd
, STDOUT_FILENO
);
69 dup2 (fd
, STDERR_FILENO
);
80 #endif /* HAVE_DAEMON */