Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2082 → Rev 2083

/trunk/kernel/arch/ia32/include/context.h
51,7 → 51,7
* Only save registers that must be preserved across
* function calls.
*/
struct context {
typedef struct {
uintptr_t sp;
uintptr_t pc;
uint32_t ebx;
59,7 → 59,7
uint32_t edi;
uint32_t ebp;
ipl_t ipl;
} __attribute__ ((packed));
} __attribute__ ((packed)) context_t;
 
#endif