blob: a2fb13a4f6ec8ffb5f9475e0d46a8344993802a1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef UTILS_H
#define UTILS_H 1
void daemonize_enable(void);
int daemonize_with_pidfile(char const * const pidfile);
int daemonize_shutdown(char const * const pidfile);
#endif
|