exit: avoid sig->count in __exit_signal() to detect the group-dead case
[safe/jmp/linux-2.6] / kernel / exit.c
index 9220967..4c70c37 100644 (file)
@@ -88,11 +88,12 @@ static void __exit_signal(struct task_struct *tsk)
                                        rcu_read_lock_held() ||
                                        lockdep_tasklist_lock_is_held());
        spin_lock(&sighand->siglock);
+       atomic_dec(&sig->count);
 
        posix_cpu_timers_exit(tsk);
-       if (atomic_dec_and_test(&sig->count))
+       if (thread_group_leader(tsk)) {
                posix_cpu_timers_exit_group(tsk);
-       else {
+       else {
                /*
                 * If there is any task waiting for the group exit
                 * then notify it: