mn10300: don't bother with SIGTRAP in setup_frame()
... just tell signal_delivered() to do it. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
7fa6239dac
commit
548916e9f5
@ -317,10 +317,6 @@ static int setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
|
|||||||
regs->d0 = sig;
|
regs->d0 = sig;
|
||||||
regs->d1 = (unsigned long) &frame->sc;
|
regs->d1 = (unsigned long) &frame->sc;
|
||||||
|
|
||||||
/* the tracer may want to single-step inside the handler */
|
|
||||||
if (test_thread_flag(TIF_SINGLESTEP))
|
|
||||||
ptrace_notify(SIGTRAP);
|
|
||||||
|
|
||||||
#if DEBUG_SIG
|
#if DEBUG_SIG
|
||||||
printk(KERN_DEBUG "SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
|
printk(KERN_DEBUG "SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
|
||||||
sig, current->comm, current->pid, frame, regs->pc,
|
sig, current->comm, current->pid, frame, regs->pc,
|
||||||
@ -398,10 +394,6 @@ static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
|
|||||||
regs->d0 = sig;
|
regs->d0 = sig;
|
||||||
regs->d1 = (long) &frame->info;
|
regs->d1 = (long) &frame->info;
|
||||||
|
|
||||||
/* the tracer may want to single-step inside the handler */
|
|
||||||
if (test_thread_flag(TIF_SINGLESTEP))
|
|
||||||
ptrace_notify(SIGTRAP);
|
|
||||||
|
|
||||||
#if DEBUG_SIG
|
#if DEBUG_SIG
|
||||||
printk(KERN_DEBUG "SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
|
printk(KERN_DEBUG "SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n",
|
||||||
sig, current->comm, current->pid, frame, regs->pc,
|
sig, current->comm, current->pid, frame, regs->pc,
|
||||||
|
Loading…
Reference in New Issue
Block a user