svn commit: r209252 - head/sys/amd64/ia32
Konstantin Belousov
kib at FreeBSD.org
Thu Jun 17 12:35:17 UTC 2010
Author: kib
Date: Thu Jun 17 12:35:17 2010
New Revision: 209252
URL: http://svn.freebsd.org/changeset/base/209252
Log:
In the ia32_{get,set}_fpcontext(), use fpu{get,set}userregs instead
of fpu{get,set}regs.
Noted by: bde
MFC after: 1 month
Modified:
head/sys/amd64/ia32/ia32_signal.c
Modified: head/sys/amd64/ia32/ia32_signal.c
==============================================================================
--- head/sys/amd64/ia32/ia32_signal.c Thu Jun 17 12:30:41 2010 (r209251)
+++ head/sys/amd64/ia32/ia32_signal.c Thu Jun 17 12:35:17 2010 (r209252)
@@ -98,7 +98,8 @@ ia32_get_fpcontext(struct thread *td, st
* 64bit instruction and data pointers. Ignore the difference
* for now, it should be irrelevant for most applications.
*/
- mcp->mc_ownedfp = fpugetregs(td, (struct savefpu *)&mcp->mc_fpstate);
+ mcp->mc_ownedfp = fpugetuserregs(td,
+ (struct savefpu *)&mcp->mc_fpstate);
mcp->mc_fpformat = fpuformat();
}
@@ -115,7 +116,7 @@ ia32_set_fpcontext(struct thread *td, co
fpstate_drop(td);
else if (mcp->mc_ownedfp == _MC_FPOWNED_FPU ||
mcp->mc_ownedfp == _MC_FPOWNED_PCB) {
- fpusetregs(td, (struct savefpu *)&mcp->mc_fpstate);
+ fpusetuserregs(td, (struct savefpu *)&mcp->mc_fpstate);
} else
return (EINVAL);
return (0);
More information about the svn-src-head
mailing list