Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2082 → Rev 2083

/trunk/kernel/arch/sparc64/include/fpu_context.h
40,10 → 40,10
#define ARCH_HAS_FPU
#define FPU_CONTEXT_ALIGN 8
 
struct fpu_context {
typedef struct {
uint64_t d[32];
uint64_t fsr;
};
} fpu_context_t;
 
#endif
 
/trunk/kernel/arch/sparc64/include/context.h
56,7 → 56,7
* Save only registers that must be preserved across
* function calls.
*/
struct context {
typedef struct {
uintptr_t sp; /* %o6 */
uintptr_t pc; /* %o7 */
uint64_t i0;
76,7 → 76,7
uint64_t l6;
uint64_t l7;
ipl_t ipl;
};
} context_t;
 
#endif