1#include <asm/psr.h> 2 3static void 4get_error(struct tcb *tcp, const bool check_errno) 5{ 6 if (sparc_regs.psr & PSR_C) { 7 tcp->u_rval = -1; 8 tcp->u_error = sparc_regs.u_regs[U_REG_O0]; 9 } else { 10 tcp->u_rval = sparc_regs.u_regs[U_REG_O0]; 11 } 12} 13