summaryrefslogtreecommitdiff
path: root/sys/gnu/arch/i386/fpemul/fpu_entry.c
AgeCommit message (Collapse)Author
2003-07-31fix the copyin() size for the instruction (and thus avoid oblittering someJason Wright
stack junk). Remove the math_abort() and bswapw() macros. ok mickey, tested by nick. fpu-less x86 machines now boot but there are still problems.
2003-07-30Change:Jason Wright
#define I387 (*(union i387_union *)&(((struct pcb *)curproc->p_addr)->pcb_savefpu.gplemu)) To: #define I387 (curproc->p_addr->u_pcb.pcb_savefpu.gplemu) (and add a few includes of sys/user.h to make it work).
2003-07-30de-ifdef... now this is starting to make sense (it's still ugly and broken, tho)Jason Wright
2003-01-09Remove fetch(9) and store(9) functions from the kernel, and replace the fewMiod Vallat
remaining instances of them with appropriate copy(9) usage. ok art@, tested on all arches unless my memory is non-ECC
1996-08-27Everyone, say hello to a real floating point emulator!Jason Downs
The fpemul written for Linux by W. Metzenthen: ported to NetBSD and then to FreeBSD, and now back to OpenBSD.