diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-05-26 22:20:22 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-10-01 09:58:16 -0400 |
commit | 548916e9f59ba35174122e33c48ac744410973fa (patch) | |
tree | 41a6d5d1d71eb9d2b69f54f7a7e4f795e81680bf /arch/mn10300 | |
parent | 7fa6239dac3f6695393578f8f840b9cd11aa5476 (diff) | |
download | linux-3.10-548916e9f59ba35174122e33c48ac744410973fa.tar.gz linux-3.10-548916e9f59ba35174122e33c48ac744410973fa.tar.bz2 linux-3.10-548916e9f59ba35174122e33c48ac744410973fa.zip |
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>
Diffstat (limited to 'arch/mn10300')
-rw-r--r-- | arch/mn10300/kernel/signal.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/mn10300/kernel/signal.c b/arch/mn10300/kernel/signal.c index b2c0ac71512..f570b3085ef 100644 --- a/arch/mn10300/kernel/signal.c +++ b/arch/mn10300/kernel/signal.c @@ -317,10 +317,6 @@ static int setup_frame(int sig, struct k_sigaction *ka, sigset_t *set, regs->d0 = sig; 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 printk(KERN_DEBUG "SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n", 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->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 printk(KERN_DEBUG "SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n", sig, current->comm, current->pid, frame, regs->pc, |