Home | History | Annotate | Download | only in sh64
      1 static int
      2 arch_set_error(struct tcb *tcp)
      3 {
      4 	sh64_r9 = -tcp->u_error;
      5 	return upoke(tcp->pid, REG_GENERAL(9), sh64_r9);
      6 }
      7 
      8 static int
      9 arch_set_success(struct tcb *tcp)
     10 {
     11 	sh64_r9 = tcp->u_rval;
     12 	return upoke(tcp->pid, REG_GENERAL(9), sh64_r9);
     13 }
     14