mirror of
https://github.com/optim-enterprises-bv/nDPId.git
synced 2025-11-01 18:57:48 +00:00
16 lines
431 B
C
16 lines
431 B
C
#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
|