diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-28 17:28:57 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-28 17:29:24 +0100 |
commit | aa2231b32ba2a9553a34be71ca9fd7e12275d6f5 (patch) | |
tree | 2cc7520c087f39874bc3031858948e53a22b99cf | |
parent | m (diff) | |
download | sat-aa2231b32ba2a9553a34be71ca9fd7e12275d6f5.tar.gz sat-aa2231b32ba2a9553a34be71ca9fd7e12275d6f5.tar.bz2 sat-aa2231b32ba2a9553a34be71ca9fd7e12275d6f5.tar.xz |
m + all of this is probably unnecessary for most users
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | src/satd-diminished.c | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -56,6 +56,10 @@ ENVIRONMENT a home and is not root), or /etc/sat/hook (otherwise) is used. +NOTES + nohup(1) combined with sh(1) and, sleep(1) or sleep-until(1) + should be sufficient for most users. + SEE ALSO at(1), cron(1), sleep-until(1) diff --git a/src/satd-diminished.c b/src/satd-diminished.c index b18c5cf..fd41f14 100644 --- a/src/satd-diminished.c +++ b/src/satd-diminished.c @@ -85,6 +85,8 @@ main(int argc, char *argv[]) const char *image; struct stat _attr; + /* TODO set up signal handlers. */ + /* Pick-up where we left off. */ if (!fstat(CONN_FILENO, &_attr)) { fd = CONN_FILENO; @@ -93,6 +95,7 @@ main(int argc, char *argv[]) goto fail; } + /* The magnificent loop. */ accept_again: fd = accept(SOCK_FILENO, NULL, NULL); if (fd == -1) { |