Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2082 → Rev 2083

/trunk/kernel/arch/sparc64/include/context.h
56,7 → 56,7
* Save only registers that must be preserved across
* function calls.
*/
struct context {
typedef struct {
uintptr_t sp; /* %o6 */
uintptr_t pc; /* %o7 */
uint64_t i0;
76,7 → 76,7
uint64_t l6;
uint64_t l7;
ipl_t ipl;
};
} context_t;
 
#endif