summaryrefslogtreecommitdiff
path: root/sys/arch/sun3
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-04-05 20:32:50 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-04-05 20:32:50 +0000
commit9364dd037fa7b7ce4a9e996b98c304aa5a5bfc89 (patch)
treed8be4d960180fe8ade358d7ed2634fe819d1d71a /sys/arch/sun3
parentfea29c93eead286ae4a5114147d4a5d998375761 (diff)
fpu_type -> fputype
Diffstat (limited to 'sys/arch/sun3')
-rw-r--r--sys/arch/sun3/sun3/machdep.c8
1 files 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);
}