FPU: fix field names, compiler warning, long lines

This commit is contained in:
David van Moolenbroek
2009-12-02 23:12:46 +00:00
parent 38fecc5de1
commit fe982ca684
7 changed files with 28 additions and 19 deletions

View File

@@ -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
};