1 #ifndef LTTNG_DAEMONIZE_H
2 #define LTTNG_DAEMONIZE_H
5 * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
6 * Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * SPDX-License-Identifier: GPL-2.0-only
13 #include <common/macros.hpp>
16 * Daemonize this process by forking and making the parent wait for the child
17 * to signal it indicating readiness. Once received, the parent successfully
20 * The child process undergoes the same action that daemon(3) does meaning
21 * setsid, chdir, and dup /dev/null into 0, 1 and 2.
23 * Return 0 on success else -1 on error.
25 int lttng_daemonize(pid_t *child_ppid, int *completion_flag,
28 #endif /* LTTNG_DAEMONIZE_H */