From f53cd3f1a342ca193b92765f81bf3a19f98cd0d0 Mon Sep 17 00:00:00 2001 From: kstailey Date: Sat, 5 Apr 1997 20:32:49 +0000 Subject: [PATCH] fpu_type -> fputype --- sys/arch/sun3/sun3/machdep.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/sun3/sun3/machdep.c b/sys/arch/sun3/sun3/machdep.c index 77922cb59b7..d30ea84b648 100644 --- a/sys/arch/sun3/sun3/machdep.c +++ b/sys/arch/sun3/sun3/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.17 1997/02/06 20:00:43 kstailey Exp $ */ +/* $OpenBSD: machdep.c,v 1.18 1997/04/05 20:32:49 kstailey Exp $ */ /* $NetBSD: machdep.c,v 1.77 1996/10/13 03:47:51 christos Exp $ */ /* @@ -102,7 +102,7 @@ extern short exframesize[]; extern vm_offset_t vmmap; /* XXX - poor name. See mem.c */ int physmem; -int fpu_type; +int fputype; int msgbufmapped; label_t *nofault; vm_offset_t vmmap; @@ -414,7 +414,7 @@ setregs(p, pack, stack, retval) /* restore a null state frame */ p->p_addr->u_pcb.pcb_fpregs.fpf_null = 0; - if (fpu_type) { + if (fputype) { m68881_restore(&p->p_addr->u_pcb.pcb_fpregs); } /* XXX - HPUX sigcode hack would go here... */ @@ -618,7 +618,7 @@ sendsig(catcher, sig, mask, code, type, val) #endif } - if (fpu_type) { + if (fputype) { kfp->sf_state.ss_flags |= SS_FPSTATE; m68881_save(&kfp->sf_state.ss_fpstate); } -- 2.20.1