diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-08-05 16:03:28 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-08-05 16:03:28 +0200 |
commit | 6031b07eb4f50af49bcd99951a28bd63dbf1c5b6 (patch) | |
tree | 88d634ad914ac06abb622393b0593c35254320ac /utils.h | |
parent | 88aa7681842e294d4cb7c440abbbd51dacf54153 (diff) |
added utils module to share some code parts with other apps
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/utils.h b/utils.h new file mode 100644 index 000000000..a2fb13a4f --- /dev/null +++ b/utils.h @@ -0,0 +1,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 |