diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2007-06-04 07:15:44 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-06-14 14:29:57 +0200 |
commit | 865418d8e78b9c11c964157740b2596d6ffe9dfa (patch) | |
tree | 2ef4b1652fe38c7b9e172ca7a8aef906602d3692 /include/asm-powerpc/ptrace.h | |
parent | [POWERPC] ptrace updates & new, better requests (diff) | |
download | linux-865418d8e78b9c11c964157740b2596d6ffe9dfa.tar.xz linux-865418d8e78b9c11c964157740b2596d6ffe9dfa.zip |
[POWERPC] Uninline common ptrace bits
This folds back the ptrace-common.h bits back into ptrace.c and removes
that file. The FSL SPE bits from ptrace-ppc32.h are folded back in as
well.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to '')
-rw-r--r-- | include/asm-powerpc/ptrace.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-powerpc/ptrace.h b/include/asm-powerpc/ptrace.h index 53d24584e968..13fccc5a4119 100644 --- a/include/asm-powerpc/ptrace.h +++ b/include/asm-powerpc/ptrace.h @@ -92,6 +92,11 @@ extern unsigned long profile_pc(struct pt_regs *regs); set_thread_flag(TIF_NOERROR); \ } while(0) +struct task_struct; +extern unsigned long ptrace_get_reg(struct task_struct *task, int regno); +extern int ptrace_put_reg(struct task_struct *task, int regno, + unsigned long data); + /* * We use the least-significant bit of the trap field to indicate * whether we have saved the full set of registers, or only a |