From d610a479114390acb1fffbfc497d46b4af5e788e Mon Sep 17 00:00:00 2001 From: mycroft Date: Sun, 30 Jan 1994 17:44:58 +0000 Subject: [PATCH] Add prototypes for fpreg diddlers. --- sys/sys/ptrace.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/sys/sys/ptrace.h b/sys/sys/ptrace.h index 0f8a448049ce..2e0d5bad666c 100644 --- a/sys/sys/ptrace.h +++ b/sys/sys/ptrace.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)ptrace.h 7.4 (Berkeley) 2/22/91 - * $Id: ptrace.h,v 1.10 1994/01/20 21:23:18 ws Exp $ + * $Id: ptrace.h,v 1.11 1994/01/30 17:44:58 mycroft Exp $ */ #ifndef _SYS_PTRACE_H_ @@ -63,6 +63,15 @@ int process_read_regs __P((struct proc *p, struct reg *regs)); #ifdef PT_SETREGS int process_write_regs __P((struct proc *p, struct reg *regs)); #endif +#if defined(PT_GETFPREGS) || defined(PT_SETFPREGS) +struct fpreg; +#endif +#ifdef PT_GETFPREGS +int process_read_fpregs __P((struct proc *p; struct fpreg *regs)); +#endif +#ifdef PT_SETFPREGS +int process_write_fpregs __P((struct proc *p; struct fpreg *regs)); +#endif int process_sstep __P((struct proc *p, int sstep)); int process_fix_sstep __P((struct proc *p)); int process_set_pc __P((struct proc *p, u_int addr));