mirror of
https://github.com/apache/httpd.git
synced 2025-08-13 14:40:20 +00:00
the mpm-note-child-killed hook was just for use by
ap_{reclaim,relieve}_child_processes; those functions can invoke the hook directly; the function ap_mpm_note_child_killed() is useless git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086953 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -228,7 +228,7 @@ void ap_reclaim_child_processes(int terminate)
|
||||
}
|
||||
|
||||
if (reclaim_one_pid(pid, action_table[cur_action].action)) {
|
||||
ap_mpm_note_child_killed(i);
|
||||
ap_run_mpm_note_child_killed(i);
|
||||
}
|
||||
else {
|
||||
++not_dead_yet;
|
||||
@ -273,7 +273,7 @@ void ap_relieve_child_processes(void)
|
||||
}
|
||||
|
||||
if (reclaim_one_pid(pid, DO_NOTHING)) {
|
||||
ap_mpm_note_child_killed(i);
|
||||
ap_run_mpm_note_child_killed(i);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user