Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2082 → Rev 2083

/trunk/kernel/arch/ppc32/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
uint32_t cr;
ipl_t ipl;
} __attribute__ ((packed));
} __attribute__ ((packed)) context_t;
 
#endif