Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 45 → Rev 40

/SPARTAN/trunk/arch/ia32/include/context.h
31,11 → 31,6
 
#include <arch/types.h>
 
struct fpu_context {
__u8 fpu[512]; //FXSAVE & FXRSTOR storage area size
};
 
 
struct context {
__u32 sp;
__u32 pc;
45,8 → 40,7
__u32 esi;
__u32 edi;
__u32 ebp;
__u32 pri;
struct fpu_context *fpu;
__u32 pri;
} __attribute__ ((packed));
 
#endif