diff options
author | Roland McGrath <roland@redhat.com> | 2008-01-30 07:30:52 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:30:52 -0500 |
commit | 962ff3804d31a4d090bbcbd3d06a4b63e3a5b5fd (patch) | |
tree | 46e45a1076777b7454fd026f006f7517229b34b7 /include/asm-x86/ptrace.h | |
parent | e4aed6cc45f06acd35e3dfbbaf632c5d5aa897c0 (diff) |
x86: x86-64 ptrace debugreg cleanup
This cleans up the 64-bit ptrace code to separate the guts of the
debug register access from the implementation of PTRACE_PEEKUSR and
PTRACE_POKEUSR. The new functions ptrace_[gs]et_debugreg are made
global so that the ia32 code can later be changed to call them too.
Signed-off-by: Roland McGrath <roland@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/ptrace.h')
-rw-r--r-- | include/asm-x86/ptrace.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-x86/ptrace.h b/include/asm-x86/ptrace.h index fe75422f034b..d223decd7b01 100644 --- a/include/asm-x86/ptrace.h +++ b/include/asm-x86/ptrace.h | |||
@@ -110,6 +110,9 @@ void signal_fault(struct pt_regs *regs, void __user *frame, char *where); | |||
110 | 110 | ||
111 | struct task_struct; | 111 | struct task_struct; |
112 | 112 | ||
113 | extern unsigned long ptrace_get_debugreg(struct task_struct *child, int n); | ||
114 | extern int ptrace_set_debugreg(struct task_struct *child, int n, unsigned long); | ||
115 | |||
113 | extern unsigned long | 116 | extern unsigned long |
114 | convert_rip_to_linear(struct task_struct *child, struct pt_regs *regs); | 117 | convert_rip_to_linear(struct task_struct *child, struct pt_regs *regs); |
115 | 118 | ||