diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2005-10-30 18:01:37 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-30 20:37:17 -0500 |
commit | 9e4e23bccb127fac109e765dfb7f9372661cb415 (patch) | |
tree | 0031d99431f89d135830b8386d3f0fbff0b57753 /fs/exec.c | |
parent | 833d304b22edff5cc687ab7e5549c2f0dcdd951a (diff) |
[PATCH] little de_thread() cleanup
Trivial, saves one 'if' branch in de_thread().
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/exec.c')
-rw-r--r-- | fs/exec.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -630,10 +630,9 @@ static inline int de_thread(struct task_struct *tsk) | |||
630 | /* | 630 | /* |
631 | * Account for the thread group leader hanging around: | 631 | * Account for the thread group leader hanging around: |
632 | */ | 632 | */ |
633 | count = 2; | 633 | count = 1; |
634 | if (thread_group_leader(current)) | 634 | if (!thread_group_leader(current)) { |
635 | count = 1; | 635 | count = 2; |
636 | else { | ||
637 | /* | 636 | /* |
638 | * The SIGALRM timer survives the exec, but needs to point | 637 | * The SIGALRM timer survives the exec, but needs to point |
639 | * at us as the new group leader now. We have a race with | 638 | * at us as the new group leader now. We have a race with |