diff options
Diffstat (limited to '')
-rw-r--r-- | src/daemon.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/daemon.c b/src/daemon.c index ab97dff..a39b0e3 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -473,3 +473,16 @@ fail: return fd; } + +/** + * Let the daemon know that it may need to + * update the timers, and perhaps exit. + * + * @return 0 on success, -1 on error. + */ +int +poke_daemon(void) +{ + return 0; /* TODO poke_daemon */ +} + |