diff options
author | Roland McGrath <roland@redhat.com> | 2009-09-23 18:57:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-24 10:21:01 -0400 |
commit | d9588725e52650e82989707f8fd2feb67ad2dc8e (patch) | |
tree | 39a9f9f5e8ba6a6e008b9ada310347e24ede400e /kernel | |
parent | ba0a6c9f6fceed11c6a99e8326f0477fe383e6b5 (diff) |
signals: inline __fatal_signal_pending
__fatal_signal_pending inlines to one instruction on x86, probably two
instructions on other machines. It takes two longer x86 instructions just
to call it and test its return value, not to mention the function itself.
On my random x86_64 config, this saved 70 bytes of text (59 of those being
__fatal_signal_pending itself).
Signed-off-by: Roland McGrath <roland@redhat.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/signal.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/kernel/signal.c b/kernel/signal.c index c6d7a24a86a1..6705320784fd 100644 --- a/kernel/signal.c +++ b/kernel/signal.c | |||
@@ -1050,12 +1050,6 @@ void zap_other_threads(struct task_struct *p) | |||
1050 | } | 1050 | } |
1051 | } | 1051 | } |
1052 | 1052 | ||
1053 | int __fatal_signal_pending(struct task_struct *tsk) | ||
1054 | { | ||
1055 | return sigismember(&tsk->pending.signal, SIGKILL); | ||
1056 | } | ||
1057 | EXPORT_SYMBOL(__fatal_signal_pending); | ||
1058 | |||
1059 | struct sighand_struct *lock_task_sighand(struct task_struct *tsk, unsigned long *flags) | 1053 | struct sighand_struct *lock_task_sighand(struct task_struct *tsk, unsigned long *flags) |
1060 | { | 1054 | { |
1061 | struct sighand_struct *sighand; | 1055 | struct sighand_struct *sighand; |