aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/fork.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/fork.c')
-rw-r--r--kernel/fork.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/kernel/fork.c b/kernel/fork.c
index 79e91046f36e..9b4e54ef0225 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -1156,18 +1156,6 @@ static task_t *copy_process(unsigned long clone_flags,
1156 } 1156 }
1157 1157
1158 if (clone_flags & CLONE_THREAD) { 1158 if (clone_flags & CLONE_THREAD) {
1159 /*
1160 * Important: if an exit-all has been started then
1161 * do not create this new thread - the whole thread
1162 * group is supposed to exit anyway.
1163 */
1164 if (current->signal->flags & SIGNAL_GROUP_EXIT) {
1165 spin_unlock(&current->sighand->siglock);
1166 write_unlock_irq(&tasklist_lock);
1167 retval = -EAGAIN;
1168 goto bad_fork_cleanup_namespace;
1169 }
1170
1171 p->group_leader = current->group_leader; 1159 p->group_leader = current->group_leader;
1172 list_add_tail_rcu(&p->thread_group, &p->group_leader->thread_group); 1160 list_add_tail_rcu(&p->thread_group, &p->group_leader->thread_group);
1173 1161