Commit a58e76f25432dc5e3e84d04c27bec03347ca365b

Authored by Geert Uytterhoeven
Committed by Linus Torvalds
1 parent 392a8b7efe

[PATCH] Remove obsolete HAVE_ARCH_GET_SIGNAL_TO_DELIVER?

Now m68k no longer sets HAVE_ARCH_GET_SIGNAL_TO_DELIVER, can it be removed
completely? Or may ARM26 still need it? Note that its usage was removed from
kernel/signal.c about 2 months ago.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

Showing 2 changed files with 0 additions and 5 deletions Side-by-side Diff

include/asm-arm26/signal.h
... ... @@ -166,9 +166,6 @@
166 166 #include <asm/sigcontext.h>
167 167  
168 168 #define sigmask(sig) (1UL << ((sig) - 1))
169   -//FIXME!!!
170   -//#define HAVE_ARCH_GET_SIGNAL_TO_DELIVER
171   -
172 169 #endif
173 170  
174 171  
include/linux/signal.h
... ... @@ -231,10 +231,8 @@
231 231 extern long do_sigpending(void __user *, unsigned long);
232 232 extern int sigprocmask(int, sigset_t *, sigset_t *);
233 233  
234   -#ifndef HAVE_ARCH_GET_SIGNAL_TO_DELIVER
235 234 struct pt_regs;
236 235 extern int get_signal_to_deliver(siginfo_t *info, struct k_sigaction *return_ka, struct pt_regs *regs, void *cookie);
237   -#endif
238 236  
239 237 #endif /* __KERNEL__ */
240 238