blob: f1765fc532952ad5f565e50b6bd2b8082eb079d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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);
int change_user_group(char const * const user, char const * const group,
char const * const pidfile,
char const * const uds_collector_path,
char const * const uds_distributor_path);
#endif
|