Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 84654
b: refs/heads/master
c: 96fabbf
h: refs/heads/master
v: v3
  • Loading branch information
Oleg Nesterov authored and Linus Torvalds committed Feb 8, 2008
1 parent b49faaf commit a338f1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1bad95c3bee183719e15eebffef66afc3fb3f8b0
refs/heads/master: 96fabbf55ae79826f2e8a86f4066d7e8834315ae
17 changes: 4 additions & 13 deletions trunk/kernel/exit.c
Original file line number Diff line number Diff line change
Expand Up @@ -1140,12 +1140,6 @@ static int eligible_child(pid_t pid, int options, struct task_struct *p)
if (((p->exit_signal != SIGCHLD) ^ ((options & __WCLONE) != 0))
&& !(options & __WALL))
return 0;
/*
* Do not consider thread group leaders that are
* in a non-empty thread group:
*/
if (delay_group_leader(p))
return 2;

err = security_task_wait(p);
if (err)
Expand Down Expand Up @@ -1497,10 +1491,9 @@ static long do_wait(pid_t pid, int options, struct siginfo __user *infop,
tsk = current;
do {
struct task_struct *p;
int ret;

list_for_each_entry(p, &tsk->children, sibling) {
ret = eligible_child(pid, options, p);
int ret = eligible_child(pid, options, p);
if (!ret)
continue;

Expand All @@ -1524,19 +1517,17 @@ static long do_wait(pid_t pid, int options, struct siginfo __user *infop,
retval = wait_task_stopped(p,
(options & WNOWAIT), infop,
stat_addr, ru);
} else if (p->exit_state == EXIT_ZOMBIE) {
} else if (p->exit_state == EXIT_ZOMBIE &&
!delay_group_leader(p)) {
/*
* Eligible but we cannot release it yet:
* We don't reap group leaders with subthreads.
*/
if (ret == 2)
goto check_continued;
if (!likely(options & WEXITED))
continue;
retval = wait_task_zombie(p,
(options & WNOWAIT), infop,
stat_addr, ru);
} else if (p->exit_state != EXIT_DEAD) {
check_continued:
/*
* It's running now, so it might later
* exit, stop, or stop and then continue.
Expand Down

0 comments on commit a338f1c

Please sign in to comment.