Rev 2071 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2071 | Rev 2083 | ||
---|---|---|---|
Line 64... | Line 64... | ||
64 | 64 | ||
65 | /* |
65 | /* |
66 | * Only save registers that must be preserved across |
66 | * Only save registers that must be preserved across |
67 | * function calls. |
67 | * function calls. |
68 | */ |
68 | */ |
69 | struct context { |
69 | typedef struct { |
70 | 70 | ||
71 | /* |
71 | /* |
72 | * Application registers |
72 | * Application registers |
73 | */ |
73 | */ |
74 | uint64_t ar_pfs; |
74 | uint64_t ar_pfs; |
Line 126... | Line 126... | ||
126 | __r128 f29; |
126 | __r128 f29; |
127 | __r128 f30; |
127 | __r128 f30; |
128 | __r128 f31; |
128 | __r128 f31; |
129 | 129 | ||
130 | ipl_t ipl; |
130 | ipl_t ipl; |
131 | }; |
131 | } context_t; |
132 | 132 | ||
133 | #endif |
133 | #endif |
134 | 134 | ||
135 | /** @} |
135 | /** @} |
136 | */ |
136 | */ |