Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2082 → Rev 2083

/trunk/kernel/arch/ppc64/include/fpu_context.h
39,7 → 39,7
# include <arch/types.h>
#endif
 
struct fpu_context {
typedef struct {
uint64_t fr14;
uint64_t fr15;
uint64_t fr16;
59,7 → 59,7
uint64_t fr30;
uint64_t fr31;
uint32_t fpscr;
} __attribute__ ((packed));
} __attribute__ ((packed)) fpu_context_t;
 
#endif
 
/trunk/kernel/arch/ppc64/include/context.h
39,7 → 39,7
 
#define SP_DELTA 16
 
struct context {
typedef struct {
uintptr_t sp;
uintptr_t pc;
67,7 → 67,7
uint64_t cr;
ipl_t ipl;
} __attribute__ ((packed));
} __attribute__ ((packed)) context_t;
 
#endif