Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2082 → Rev 2083

/trunk/kernel/arch/mips32/include/fpu_context.h
39,10 → 39,10
 
#define FPU_CONTEXT_ALIGN sizeof(unative_t)
 
struct fpu_context {
typedef struct {
unative_t dregs[32];
unative_t cregs[32];
};
} fpu_context_t;
 
#endif
 
/trunk/kernel/arch/mips32/include/context.h
52,7 → 52,7
* Only save registers that must be preserved across
* function calls.
*/
struct context {
typedef struct {
uintptr_t sp;
uintptr_t pc;
68,7 → 68,7
uint32_t gp;
 
ipl_t ipl;
};
} context_t;
 
#endif /* __ASM__ */