Module Name: src Committed By: mgorny Date: Fri May 10 16:27:03 UTC 2019
Modified Files: src/sys/arch/i386/include: reg.h Log Message: Fill 'struct fpreg' & 'struct xmmregs' in The 'struct fpreg' data type used by PT_GETFPREGS, and 'struct xmmregs' used by PT_GETXMMREGS are currently opaque. Define them to contain correct data structs instead, the same way they are defined for amd64. For 'struct fpreg' this means 'struct save87', and for 'struct xmmregs' this means 'struct fxsave'. This makes it more transparent for consumers how the data is formatted, and allows using it without need for explicit casts. Reviewed by <kamil>. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/arch/i386/include/reg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.