diff options
author | deischen <deischen@FreeBSD.org> | 2002-09-30 08:45:38 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2002-09-30 08:45:38 +0000 |
commit | ae413d8b120e0c804e36188adda1259cb33e0710 (patch) | |
tree | 6422650ff97a44439cab1b5eb4c56c28588f1319 /lib/libc_r/uthread/pthread_private.h | |
parent | feb7c19b698824d7fc57bcf8e4c99a034df952bc (diff) | |
download | FreeBSD-src-ae413d8b120e0c804e36188adda1259cb33e0710.zip FreeBSD-src-ae413d8b120e0c804e36188adda1259cb33e0710.tar.gz |
Add back the i386-specific hack to save and restore the FP state
to/from a ucontext when a thread is interrupted by a signal.
This will be removed when a proper fix is made in the kernel
to save/restore the FP state without breaking the ABI.
Diffstat (limited to 'lib/libc_r/uthread/pthread_private.h')
-rw-r--r-- | lib/libc_r/uthread/pthread_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc_r/uthread/pthread_private.h b/lib/libc_r/uthread/pthread_private.h index 97b30b7..4983a57 100644 --- a/lib/libc_r/uthread/pthread_private.h +++ b/lib/libc_r/uthread/pthread_private.h @@ -77,12 +77,12 @@ #define SET_STACK_UC(ucp, stk) (ucp)->uc_mcontext.mc_esp = (int)(stk) #define FP_SAVE_UC(ucp) do { \ char *fdata; \ - fdata = (char *) (ucp)->uc_mcontext.mc_fpregs; \ + fdata = (char *) (ucp)->uc_mcontext.mc_fpstate; \ __asm__("fnsave %0": :"m"(*fdata)); \ } while (0) #define FP_RESTORE_UC(ucp) do { \ char *fdata; \ - fdata = (char *) (ucp)->uc_mcontext.mc_fpregs; \ + fdata = (char *) (ucp)->uc_mcontext.mc_fpstate; \ __asm__("frstor %0": :"m"(*fdata)); \ } while (0) #define SET_RETURN_ADDR_JB(jb, ra) (jb)[0]._jb[0] = (int)(ra) |