diff options
Diffstat (limited to 'sys/amd64/include')
| -rw-r--r-- | sys/amd64/include/md_var.h | 4 | ||||
| -rw-r--r-- | sys/amd64/include/reg.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sys/amd64/include/md_var.h b/sys/amd64/include/md_var.h index 0db9334e7762..de71059ee292 100644 --- a/sys/amd64/include/md_var.h +++ b/sys/amd64/include/md_var.h @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: md_var.h,v 1.23 1998/02/01 23:00:53 bde Exp $ + * $Id: md_var.h,v 1.24 1998/07/11 05:59:35 bde Exp $ */ #ifndef _MACHINE_MD_VAR_H_ @@ -64,6 +64,7 @@ extern int szsigcode; typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss)); struct proc; struct reg; +struct fpreg; void bcopyb __P((const void *from, void *to, size_t len)); void busdma_swi __P((void)); @@ -78,6 +79,7 @@ void doreti_popl_ds __P((void)) __asm(__STRING(doreti_popl_ds)); void doreti_popl_ds_fault __P((void)) __asm(__STRING(doreti_popl_ds_fault)); void doreti_popl_es __P((void)) __asm(__STRING(doreti_popl_es)); void doreti_popl_es_fault __P((void)) __asm(__STRING(doreti_popl_es_fault)); +int fill_fpregs __P((struct proc *, struct fpreg *)); int fill_regs __P((struct proc *p, struct reg *regs)); void fillw __P((int /*u_short*/ pat, void *base, size_t cnt)); int is_physical_memory __P((vm_offset_t addr)); diff --git a/sys/amd64/include/reg.h b/sys/amd64/include/reg.h index 5d36f27ceac1..3e97fc1aa6fc 100644 --- a/sys/amd64/include/reg.h +++ b/sys/amd64/include/reg.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)reg.h 5.5 (Berkeley) 1/18/91 - * $Id: reg.h,v 1.14 1997/06/07 00:49:45 bde Exp $ + * $Id: reg.h,v 1.15 1997/06/07 04:36:06 bde Exp $ */ #ifndef _MACHINE_REG_H_ @@ -122,6 +122,7 @@ struct fpreg { /* * XXX these interfaces are MI, so they should be declared in a MI place. */ +int set_fpregs __P((struct proc *, struct fpreg *)); int set_regs __P((struct proc *p, struct reg *regs)); void setregs __P((struct proc *, u_long, u_long)); #endif |
