diff options
Diffstat (limited to 'arch/m68k/include/asm/signal.h')
-rw-r--r-- | arch/m68k/include/asm/signal.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/arch/m68k/include/asm/signal.h b/arch/m68k/include/asm/signal.h index 5bc09c787a11..60e88660169c 100644 --- a/arch/m68k/include/asm/signal.h +++ b/arch/m68k/include/asm/signal.h | |||
@@ -150,7 +150,7 @@ typedef struct sigaltstack { | |||
150 | #ifdef __KERNEL__ | 150 | #ifdef __KERNEL__ |
151 | #include <asm/sigcontext.h> | 151 | #include <asm/sigcontext.h> |
152 | 152 | ||
153 | #ifndef __uClinux__ | 153 | #ifndef CONFIG_CPU_HAS_NO_BITFIELDS |
154 | #define __HAVE_ARCH_SIG_BITOPS | 154 | #define __HAVE_ARCH_SIG_BITOPS |
155 | 155 | ||
156 | static inline void sigaddset(sigset_t *set, int _sig) | 156 | static inline void sigaddset(sigset_t *set, int _sig) |
@@ -199,15 +199,14 @@ static inline int sigfindinword(unsigned long word) | |||
199 | return word ^ 31; | 199 | return word ^ 31; |
200 | } | 200 | } |
201 | 201 | ||
202 | struct pt_regs; | 202 | #endif /* !CONFIG_CPU_HAS_NO_BITFIELDS */ |
203 | extern void ptrace_signal_deliver(struct pt_regs *regs, void *cookie); | ||
204 | 203 | ||
205 | #else | 204 | #ifdef __uClinux__ |
206 | |||
207 | #undef __HAVE_ARCH_SIG_BITOPS | ||
208 | #define ptrace_signal_deliver(regs, cookie) do { } while (0) | 205 | #define ptrace_signal_deliver(regs, cookie) do { } while (0) |
209 | 206 | #else | |
207 | struct pt_regs; | ||
208 | extern void ptrace_signal_deliver(struct pt_regs *regs, void *cookie); | ||
210 | #endif /* __uClinux__ */ | 209 | #endif /* __uClinux__ */ |
211 | #endif /* __KERNEL__ */ | ||
212 | 210 | ||
211 | #endif /* __KERNEL__ */ | ||
213 | #endif /* _M68K_SIGNAL_H */ | 212 | #endif /* _M68K_SIGNAL_H */ |