1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-09-05 14:27:21 +02:00
doorlockd-mirror/doorlockd/daemon.h
2015-09-25 00:50:08 +02:00

19 lines
524 B
C++

#ifndef DAEMON_H
#define DAEMON_H
#include <string>
// Daemonizes the process if daemonize is true.
// If daemonize is true, it will write the new PID to the file "pidFile"
//
// This function will also redirect stdin, out and err to the
// specified files
void daemonize(const bool daemonize,
const std::string &dir,
const std::string &stdinfile,
const std::string &stdoutfile,
const std::string &stderrfile,
const std::string &pidFile);
#endif