summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2011-03-22 20:12:46 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2011-03-22 20:12:46 +0000
commit02acbcbdeee682b3d7ad627f8e85aa060bb07e00 (patch)
treebf6dd12fd0564658bad6bf8a2b4ac5bd03127982 /include
parent0b964040c2adde6c144610cdd8357b71f569cf40 (diff)
downloadlibapr-02acbcbdeee682b3d7ad627f8e85aa060bb07e00.tar.gz
revert unintended change to this file in r1084323
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x@1084338 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_thread_proc.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/apr_thread_proc.h b/include/apr_thread_proc.h
index 65a475b4a..7df84ef32 100644
--- a/include/apr_thread_proc.h
+++ b/include/apr_thread_proc.h
@@ -775,9 +775,7 @@ APR_DECLARE(apr_status_t) apr_proc_kill(apr_proc_t *proc, int sig);
* @param proc The process to register
* @param how How to kill the process, one of:
* <PRE>
- * APR_KILL_NEVER -- process is never sent any signals; it is
- * reaped if it has exited before the pool is
- * cleaned up
+ * APR_KILL_NEVER -- process is never sent any signals
* APR_KILL_ALWAYS -- process is sent SIGKILL on apr_pool_t cleanup
* APR_KILL_AFTER_TIMEOUT -- SIGTERM, wait 3 seconds, SIGKILL
* APR_JUST_WAIT -- wait forever for the process to complete