Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2082 → Rev 2083

/trunk/kernel/arch/ia32/include/fpu_context.h
44,9 → 44,9
void fpu_fsr(void);
 
 
struct fpu_context {
typedef struct {
uint8_t fpu[512]; /* FXSAVE & FXRSTOR storage area */
};
} fpu_context_t;
 
#endif
 
/trunk/kernel/arch/ia32/include/context.h
51,7 → 51,7
* Only save registers that must be preserved across
* function calls.
*/
struct context {
typedef struct {
uintptr_t sp;
uintptr_t pc;
uint32_t ebx;
59,7 → 59,7
uint32_t edi;
uint32_t ebp;
ipl_t ipl;
} __attribute__ ((packed));
} __attribute__ ((packed)) context_t;
 
#endif