Subversion Repositories HelenOS-historic

Rev

Rev 1702 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1702 Rev 1780
Line 50... Line 50...
50
/*
50
/*
51
 * Only save registers that must be preserved across
51
 * Only save registers that must be preserved across
52
 * function calls.
52
 * function calls.
53
 */
53
 */
54
struct context {
54
struct context {
55
    __address sp;
55
    uintptr_t sp;
56
    __address pc;
56
    uintptr_t pc;
57
    __u32 ebx;
57
    uint32_t ebx;
58
    __u32 esi;
58
    uint32_t esi;
59
    __u32 edi;
59
    uint32_t edi;
60
    __u32 ebp;
60
    uint32_t ebp;
61
    ipl_t ipl;
61
    ipl_t ipl;
62
} __attribute__ ((packed));
62
} __attribute__ ((packed));
63
 
63
 
64
#endif
64
#endif
65
 
65