mirror of
https://github.com/optim-enterprises-bv/nDPId.git
synced 2025-10-30 17:57:48 +00:00
13 lines
257 B
C
13 lines
257 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);
|
|
|
|
#endif
|