Home | History | Annotate | Download | only in sparc64
      1 static void
      2 get_error(struct tcb *tcp, const bool check_errno)
      3 {
      4 	if (sparc_regs.tstate & 0x1100000000UL) {
      5 		tcp->u_rval = -1;
      6 		tcp->u_error = sparc_regs.u_regs[U_REG_O0];
      7 	} else {
      8 		tcp->u_rval = sparc_regs.u_regs[U_REG_O0];
      9 	}
     10 }
     11