summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-04-25 15:36:37 +0000
committerLennart Poettering <lennart@poettering.net>2008-04-25 15:36:37 +0000
commitc83449ec66b5e4dd8a52143ac3d166d40e88a233 (patch)
tree930ba72aeb59f70a323b90ea1f360fd39e8d0de3
parent0ba9852be34baeb654914d6995cfd4d4641bcb77 (diff)
fix doc wording
git-svn-id: file:///home/lennart/svn/public/libdaemon/trunk@138 153bfa13-eec0-0310-be40-b0cb6a0e1b4b
-rw-r--r--libdaemon/dpid.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libdaemon/dpid.h b/libdaemon/dpid.h
index 88d6083..963fe4c 100644
--- a/libdaemon/dpid.h
+++ b/libdaemon/dpid.h
@@ -30,7 +30,7 @@ extern "C" {
/** \file
*
- * Contains an API for manipulating PID files.
+ * Contains an API for manipulating PID files.
*/
/** Prototype of a function for generating the name of a PID file.
@@ -66,7 +66,7 @@ int daemon_pid_file_create(void);
*/
int daemon_pid_file_remove(void);
-/** Returns the PID file of a running daemon, if available
+/** Returns the PID file of a running daemon, if available
* @return The PID or negative on failure
*/
pid_t daemon_pid_file_is_running(void);
@@ -77,14 +77,14 @@ pid_t daemon_pid_file_is_running(void);
*/
int daemon_pid_file_kill(int s);
-/** If this variable is defined to 1 iff daemon_pid_file_kill_wait() is supported.*/
+/** This variable is defined to 1 iff daemon_pid_file_kill_wait() is supported.*/
#define DAEMON_PID_FILE_KILL_WAIT_AVAILABLE 1
/** Similar to daemon_pid_file_kill() but waits until the process
* died. This functions is new in libdaemon 0.3. The macro
* DAEMON_PID_FILE_KILL_WAIT_AVAILABLE is defined iff libdaemon
* supports this function.
- *
+ *
* @param s The signal to send
* @param m Seconds to wait at maximum
* @return zero on success, nonzero on failure (timeout condition is considered a failure)