diff options
author | Oleg Nesterov <oleg@redhat.com> | 2009-04-02 19:58:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-02 22:05:00 -0400 |
commit | bb24c679a51b1a9b726b901330649e3861814ac0 (patch) | |
tree | 0acb31023b4b6ff49e173005fb9baaa3f3b74b2f /include/linux/tracehook.h | |
parent | 5dfc80be73dd0c212d2e6dd8dbf5afa07e680bbe (diff) |
tracehook_notify_death: use task_detached() helper
Now that task_detached() is exported, change tracehook_notify_death() to
use this helper, nobody else checks ->exit_signal == -1 by hand.
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: "Metzger, Markus T" <markus.t.metzger@intel.com>
Acked-by: Roland McGrath <roland@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/tracehook.h')
-rw-r--r-- | include/linux/tracehook.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/tracehook.h b/include/linux/tracehook.h index eb4c6545b384..c7aa154f4bfc 100644 --- a/include/linux/tracehook.h +++ b/include/linux/tracehook.h | |||
@@ -502,7 +502,7 @@ static inline int tracehook_notify_jctl(int notify, int why) | |||
502 | static inline int tracehook_notify_death(struct task_struct *task, | 502 | static inline int tracehook_notify_death(struct task_struct *task, |
503 | void **death_cookie, int group_dead) | 503 | void **death_cookie, int group_dead) |
504 | { | 504 | { |
505 | if (task->exit_signal == -1) | 505 | if (task_detached(task)) |
506 | return task->ptrace ? SIGCHLD : DEATH_REAP; | 506 | return task->ptrace ? SIGCHLD : DEATH_REAP; |
507 | 507 | ||
508 | /* | 508 | /* |