FPU: fix field names, compiler warning, long lines
This commit is contained in:
@@ -7,7 +7,9 @@
|
||||
#define _CPUF_I386_PGE 2 /* Page Global Enable */
|
||||
#define _CPUF_I386_APIC_ON_CHIP 3 /* APIC is present on the chip */
|
||||
#define _CPUF_I386_TSC 4 /* Timestamp counter present */
|
||||
#define _CPUF_I386_SSEx 5 /* Support for SSE/SSE2/SSE3/SSSE3/SSE4 Extensions and FXSR */
|
||||
#define _CPUF_I386_SSEx 5 /* Support for SSE/SSE2/SSE3/SSSE3/SSE4
|
||||
* Extensions and FXSR
|
||||
*/
|
||||
#define _CPUF_I386_FXSR 6
|
||||
#define _CPUF_I386_SSE 7
|
||||
#define _CPUF_I386_SSE2 8
|
||||
|
||||
@@ -42,11 +42,13 @@ struct sigframe { /* stack frame created for signalled process */
|
||||
#endif /* _MINIX_CHIP == _CHIP_INTEL */
|
||||
|
||||
struct sigcontext {
|
||||
int sc_flags; /* sigstack state to restore (including MF_FPU_INITIALIZED) */
|
||||
int sc_flags; /* sigstack state to restore (including
|
||||
* MF_FPU_INITIALIZED)
|
||||
*/
|
||||
long sc_mask; /* signal mask to restore */
|
||||
sigregs sc_regs; /* register set to restore */
|
||||
#if (_MINIX_CHIP == _CHIP_INTEL)
|
||||
union fpu_state_u fpu_state;
|
||||
union fpu_state_u sc_fpu_state;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user