diff options
author | Stefan Fritsch <sf@apache.org> | 2016-11-21 21:32:40 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2016-11-21 21:32:40 +0100 |
commit | 7d6d92947b104cceaf6f721795c28443691b3093 (patch) | |
tree | 68d1e3e6c9c9e68706a5da5f303060185f43ab88 /include | |
parent | Rebuild. (diff) | |
download | apache2-7d6d92947b104cceaf6f721795c28443691b3093.tar.xz apache2-7d6d92947b104cceaf6f721795c28443691b3093.zip |
ap_reclaim_child_processes(): Implement terminate immediately
The behavior for terminate == 1 was documented but not implemented. Do
that now.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1770750 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/mpm_common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/mpm_common.h b/include/mpm_common.h index 30927ed196..b366a08b12 100644 --- a/include/mpm_common.h +++ b/include/mpm_common.h @@ -94,8 +94,7 @@ typedef void ap_reclaim_callback_fn_t(int childnum, pid_t pid, * Make sure all child processes that have been spawned by the parent process * have died. This includes process registered as "other_children". * - * @param terminate Not Implemented, value is ignored !!! - * Either 1 or 0. If 1, send the child processes SIGTERM + * @param terminate Either 1 or 0. If 1, send the child processes SIGTERM * each time through the loop. If 0, give the process time to die * on its own before signalling it. * @param mpm_callback Callback invoked for each dead child process |