diff options
Diffstat (limited to 'arch/x86/include')
-rw-r--r-- | arch/x86/include/asm/ptrace.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/arch/x86/include/asm/ptrace.h b/arch/x86/include/asm/ptrace.h index e304b66abeea..5cdd19f20b5b 100644 --- a/arch/x86/include/asm/ptrace.h +++ b/arch/x86/include/asm/ptrace.h | |||
@@ -235,12 +235,11 @@ extern int do_get_thread_area(struct task_struct *p, int idx, | |||
235 | extern int do_set_thread_area(struct task_struct *p, int idx, | 235 | extern int do_set_thread_area(struct task_struct *p, int idx, |
236 | struct user_desc __user *info, int can_allocate); | 236 | struct user_desc __user *info, int can_allocate); |
237 | 237 | ||
238 | extern void x86_ptrace_untrace(struct task_struct *); | 238 | #ifdef CONFIG_X86_PTRACE_BTS |
239 | extern void x86_ptrace_fork(struct task_struct *child, | 239 | extern void ptrace_bts_untrace(struct task_struct *tsk); |
240 | unsigned long clone_flags); | ||
241 | 240 | ||
242 | #define arch_ptrace_untrace(tsk) x86_ptrace_untrace(tsk) | 241 | #define arch_ptrace_untrace(tsk) ptrace_bts_untrace(tsk) |
243 | #define arch_ptrace_fork(child, flags) x86_ptrace_fork(child, flags) | 242 | #endif /* CONFIG_X86_PTRACE_BTS */ |
244 | 243 | ||
245 | #endif /* __KERNEL__ */ | 244 | #endif /* __KERNEL__ */ |
246 | 245 | ||