struct dentry *proc_dentry1, *proc_dentry2;
                unsigned long ptrace;
 
+               leader = current->group_leader;
+               /*
+                * If our leader is the child_reaper become
+                * the child_reaper and resend SIGKILL signal.
+                */
+               if (unlikely(leader == child_reaper)) {
+                       write_lock(&tasklist_lock);
+                       child_reaper = current;
+                       zap_other_threads(current);
+                       write_unlock(&tasklist_lock);
+               }
+
                /*
                 * Wait for the thread group leader to be a zombie.
                 * It should already be zombie at this point, most
                 * of the time.
                 */
-               leader = current->group_leader;
                while (leader->exit_state != EXIT_ZOMBIE)
                        yield();
 
 
                panic("Aiee, killing interrupt handler!");
        if (unlikely(!tsk->pid))
                panic("Attempted to kill the idle task!");
-       if (unlikely(tsk->pid == 1))
+       if (unlikely(tsk == child_reaper))
                panic("Attempted to kill init!");
 
        if (unlikely(current->ptrace & PT_TRACE_EXIT)) {
 
                        continue;
 
                /* Init gets no signals it doesn't want.  */
-               if (current->pid == 1)
+               if (current == child_reaper)
                        continue;
 
                if (sig_kernel_stop(signr)) {