summaryrefslogtreecommitdiffstats
path: root/sys/alpha/osf1
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2002-07-31 19:37:03 +0000
committerjhb <jhb@FreeBSD.org>2002-07-31 19:37:03 +0000
commit8959d1076ac4d87b7a1d420795bbde47b1787321 (patch)
treee169afa5b97e9fd6aa879eeb5b639e4464c6ad6a /sys/alpha/osf1
parenta034d0cd3c7f0d940efed7491eb32a5501cc7f88 (diff)
downloadFreeBSD-src-8959d1076ac4d87b7a1d420795bbde47b1787321.zip
FreeBSD-src-8959d1076ac4d87b7a1d420795bbde47b1787321.tar.gz
- Split the unaligned access check flags out of md_flags in struct mdthread
and move them into md_uac in struct mdproc. mdproc is protected by the proc lock. md_flags now is only ever modified by the current thread, so it doesn't need a lock. - Rename the constants for all the per-thread MD flags to use MDTD_* instead of MDP_*.
Diffstat (limited to 'sys/alpha/osf1')
-rw-r--r--sys/alpha/osf1/osf1_signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/alpha/osf1/osf1_signal.c b/sys/alpha/osf1/osf1_signal.c
index 31c449d..7ea80fd 100644
--- a/sys/alpha/osf1/osf1_signal.c
+++ b/sys/alpha/osf1/osf1_signal.c
@@ -631,7 +631,7 @@ osf1_sendsig(sig_t catcher, int sig, sigset_t *mask, u_long code)
/* save the floating-point state, if necessary, then copy it. */
alpha_fpstate_save(td, 1); /* XXX maybe write=0 */
- ksi.si_sc.sc_ownedfp = td->td_md.md_flags & MDP_FPUSED;
+ ksi.si_sc.sc_ownedfp = td->td_md.md_flags & MDTD_FPUSED;
bcopy(&td->td_pcb->pcb_fp, (struct fpreg *)ksi.si_sc.sc_fpregs,
sizeof(struct fpreg));
ksi.si_sc.sc_fp_control = td->td_pcb->pcb_fp_control;
OpenPOWER on IntegriCloud