diff options
Diffstat (limited to 'arch/frv/kernel/signal.c')
-rw-r--r-- | arch/frv/kernel/signal.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/frv/kernel/signal.c b/arch/frv/kernel/signal.c index 864c2f0d497b..535810a3217a 100644 --- a/arch/frv/kernel/signal.c +++ b/arch/frv/kernel/signal.c | |||
@@ -20,7 +20,6 @@ | |||
20 | #include <linux/ptrace.h> | 20 | #include <linux/ptrace.h> |
21 | #include <linux/unistd.h> | 21 | #include <linux/unistd.h> |
22 | #include <linux/personality.h> | 22 | #include <linux/personality.h> |
23 | #include <linux/freezer.h> | ||
24 | #include <linux/tracehook.h> | 23 | #include <linux/tracehook.h> |
25 | #include <asm/ucontext.h> | 24 | #include <asm/ucontext.h> |
26 | #include <asm/uaccess.h> | 25 | #include <asm/uaccess.h> |
@@ -298,10 +297,6 @@ static int setup_frame(int sig, struct k_sigaction *ka, sigset_t *set) | |||
298 | __frame->lr = (unsigned long) &frame->retcode; | 297 | __frame->lr = (unsigned long) &frame->retcode; |
299 | __frame->gr8 = sig; | 298 | __frame->gr8 = sig; |
300 | 299 | ||
301 | /* the tracer may want to single-step inside the handler */ | ||
302 | if (test_thread_flag(TIF_SINGLESTEP)) | ||
303 | ptrace_notify(SIGTRAP); | ||
304 | |||
305 | #if DEBUG_SIG | 300 | #if DEBUG_SIG |
306 | printk("SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n", | 301 | printk("SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n", |
307 | sig, current->comm, current->pid, frame, __frame->pc, | 302 | sig, current->comm, current->pid, frame, __frame->pc, |
@@ -400,10 +395,6 @@ static int setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info, | |||
400 | __frame->gr8 = sig; | 395 | __frame->gr8 = sig; |
401 | __frame->gr9 = (unsigned long) &frame->info; | 396 | __frame->gr9 = (unsigned long) &frame->info; |
402 | 397 | ||
403 | /* the tracer may want to single-step inside the handler */ | ||
404 | if (test_thread_flag(TIF_SINGLESTEP)) | ||
405 | ptrace_notify(SIGTRAP); | ||
406 | |||
407 | #if DEBUG_SIG | 398 | #if DEBUG_SIG |
408 | printk("SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n", | 399 | printk("SIG deliver %d (%s:%d): sp=%p pc=%lx ra=%p\n", |
409 | sig, current->comm, current->pid, frame, __frame->pc, | 400 | sig, current->comm, current->pid, frame, __frame->pc, |