| Submitter | Brad Figg |
|---|---|
| Date | Feb. 3, 2011, 8:01 p.m. |
| Message ID | <1296763311-11305-4-git-send-email-brad.figg@canonical.com> |
| Download | mbox | patch |
| Permalink | /patch/81708/ |
| State | Accepted |
| Delegated to: | Stefan Bader |
| Headers | show |
Comments
Patch
diff --git a/kernel/exit.c b/kernel/exit.c index b194feb..21aa7b3 100644 --- a/kernel/exit.c +++ b/kernel/exit.c @@ -96,6 +96,14 @@ static void __exit_signal(struct task_struct *tsk) sig->tty = NULL; } else { /* + * This can only happen if the caller is de_thread(). + * FIXME: this is the temporary hack, we should teach + * posix-cpu-timers to handle this case correctly. + */ + if (unlikely(has_group_leader_pid(tsk))) + posix_cpu_timers_exit_group(tsk); + + /* * If there is any task waiting for the group exit * then notify it: */