diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2015-12-23 15:38:26 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2015-12-23 15:38:26 +0100 |
commit | 89d706b3c3f8b301ac83f6c81ab2ccecf930559c (patch) | |
tree | 86a20e928ce44e6a0373ff29a4982624bd423adb | |
parent | update todo (diff) | |
download | slibc-89d706b3c3f8b301ac83f6c81ab2ccecf930559c.tar.gz slibc-89d706b3c3f8b301ac83f6c81ab2ccecf930559c.tar.bz2 slibc-89d706b3c3f8b301ac83f6c81ab2ccecf930559c.tar.xz |
daemonise: etymology
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
-rw-r--r-- | include/unistd.h | 2 | ||||
-rw-r--r-- | src/unistd/daemonise.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h index 9a5f612..9b78fb1 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1134,6 +1134,8 @@ int daemon(int, int) * you make the function call. The process can have become * partially deamonised. * + * @etymology (Daemonise) the process! + * * @param name The name of the daemon. Use a hardcoded value, * not the process name. Must not be `NULL`. * @param flags Flags to modify the behaviour of the function. diff --git a/src/unistd/daemonise.c b/src/unistd/daemonise.c index 73ad4f8..501d169 100644 --- a/src/unistd/daemonise.c +++ b/src/unistd/daemonise.c @@ -90,6 +90,8 @@ extern char** environ; * you make the function call. The process can have become * partially deamonised. * + * @etymology (Daemonise) the process! + * * @param name The name of the daemon. Use a hardcoded value, * not the process name. Must not be `NULL`. * @param flags Flags to modify the behaviour of the function. |