Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2082 → Rev 2083

/trunk/kernel/arch/amd64/include/context.h
46,7 → 46,7
/* We include only registers that must be preserved
* during function call
*/
struct context {
typedef struct {
uintptr_t sp;
uintptr_t pc;
59,7 → 59,7
uint64_t r15;
 
ipl_t ipl;
} __attribute__ ((packed));
} __attribute__ ((packed)) context_t;
 
#endif