Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2082 → Rev 2083

/trunk/kernel/arch/ia64/include/fpu_context.h
42,9 → 42,9
 
#define FRS 96
 
struct fpu_context {
typedef struct {
__r128 fr[FRS];
};
} fpu_context_t;
 
#endif
 
/trunk/kernel/arch/ia64/include/context.h
66,7 → 66,7
* Only save registers that must be preserved across
* function calls.
*/
struct context {
typedef struct {
 
/*
* Application registers
128,7 → 128,7
__r128 f31;
ipl_t ipl;
};
} context_t;
 
#endif