1 static void get_error(struct tcb * tcp,const bool check_errno)2get_error(struct tcb *tcp, const bool check_errno) 3 { 4 /* result pointer in D0Re0 (D0.0) */ 5 if (check_errno && is_negated_errno(metag_regs.dx[0][0])) { 6 tcp->u_rval = -1; 7 tcp->u_error = -metag_regs.dx[0][0]; 8 } else { 9 tcp->u_rval = metag_regs.dx[0][0]; 10 } 11 } 12