]> granicus.if.org Git - apache/commitdiff
When shutting down with worker or event with active processes
authorJeff Trawick <trawick@apache.org>
Mon, 16 May 2011 22:33:59 +0000 (22:33 +0000)
committerJeff Trawick <trawick@apache.org>
Mon, 16 May 2011 22:33:59 +0000 (22:33 +0000)
which had lost their scoreboard slot during a prior graceful
restart, calls to ap_unregister_extra_mpm_process() were hidden
if AP_DEBUG (maintainer mode) wasn't defined.

This resulted in an uninitialized generation variable being
passed through to the child_status hook.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1103932 13f79535-47bb-0310-9956-ffa450edef68

server/mpm_unix.c

index 830c7b1aea833ae9f87ec73be345251e436b6424..fc84b1cbd857be121d7050737851ffeb5d13ce0a 100644 (file)
@@ -247,8 +247,12 @@ void ap_reclaim_child_processes(int terminate,
             extra_process_t *next = cur_extra->next;
 
             if (reclaim_one_pid(cur_extra->pid, action_table[cur_action].action)) {
-                AP_DEBUG_ASSERT(1 == ap_unregister_extra_mpm_process(cur_extra->pid, &old_gen));
-                mpm_callback(-1, cur_extra->pid, old_gen);
+                if (ap_unregister_extra_mpm_process(cur_extra->pid, &old_gen) == 1) {
+                    mpm_callback(-1, cur_extra->pid, old_gen);
+                }
+                else {
+                    AP_DEBUG_ASSERT(1 == 0);
+                }
             }
             else {
                 ++not_dead_yet;
@@ -291,8 +295,12 @@ void ap_relieve_child_processes(ap_reclaim_callback_fn_t *mpm_callback)
         extra_process_t *next = cur_extra->next;
 
         if (reclaim_one_pid(cur_extra->pid, DO_NOTHING)) {
-            AP_DEBUG_ASSERT(1 == ap_unregister_extra_mpm_process(cur_extra->pid, &old_gen));
-            mpm_callback(-1, cur_extra->pid, old_gen);
+            if (ap_unregister_extra_mpm_process(cur_extra->pid, &old_gen) == 1) {
+                mpm_callback(-1, cur_extra->pid, old_gen);
+            }
+            else {
+                AP_DEBUG_ASSERT(1 == 0);
+            }
         }
         cur_extra = next;
     }