[PATCH] Remove duplicate code in signal.c
Combine a bit of redundant code between force_sig_info() and force_sig_specific(). Signed-off-by: paulmck@us.ibm.com Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
ae6866c377
commit
b0423a0d9c
@ -879,11 +879,13 @@ force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
|
|||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
spin_lock_irqsave(&t->sighand->siglock, flags);
|
spin_lock_irqsave(&t->sighand->siglock, flags);
|
||||||
if (sigismember(&t->blocked, sig) || t->sighand->action[sig-1].sa.sa_handler == SIG_IGN) {
|
if (t->sighand->action[sig-1].sa.sa_handler == SIG_IGN) {
|
||||||
t->sighand->action[sig-1].sa.sa_handler = SIG_DFL;
|
t->sighand->action[sig-1].sa.sa_handler = SIG_DFL;
|
||||||
sigdelset(&t->blocked, sig);
|
|
||||||
recalc_sigpending_tsk(t);
|
|
||||||
}
|
}
|
||||||
|
if (sigismember(&t->blocked, sig)) {
|
||||||
|
sigdelset(&t->blocked, sig);
|
||||||
|
}
|
||||||
|
recalc_sigpending_tsk(t);
|
||||||
ret = specific_send_sig_info(sig, info, t);
|
ret = specific_send_sig_info(sig, info, t);
|
||||||
spin_unlock_irqrestore(&t->sighand->siglock, flags);
|
spin_unlock_irqrestore(&t->sighand->siglock, flags);
|
||||||
|
|
||||||
@ -893,15 +895,7 @@ force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
|
|||||||
void
|
void
|
||||||
force_sig_specific(int sig, struct task_struct *t)
|
force_sig_specific(int sig, struct task_struct *t)
|
||||||
{
|
{
|
||||||
unsigned long int flags;
|
force_sig_info(sig, SEND_SIG_FORCED, t);
|
||||||
|
|
||||||
spin_lock_irqsave(&t->sighand->siglock, flags);
|
|
||||||
if (t->sighand->action[sig-1].sa.sa_handler == SIG_IGN)
|
|
||||||
t->sighand->action[sig-1].sa.sa_handler = SIG_DFL;
|
|
||||||
sigdelset(&t->blocked, sig);
|
|
||||||
recalc_sigpending_tsk(t);
|
|
||||||
specific_send_sig_info(sig, SEND_SIG_FORCED, t);
|
|
||||||
spin_unlock_irqrestore(&t->sighand->siglock, flags);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user