blob: be6c7cefdcc3d9cd510ecc87867dbb51bee31e51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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);
#endif
|