• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 static int
arch_set_error(struct tcb * tcp)2 arch_set_error(struct tcb *tcp)
3 {
4 	avr32_regs.r12 = -tcp->u_error;
5 	return set_regs(tcp->pid);
6 }
7 
8 static int
arch_set_success(struct tcb * tcp)9 arch_set_success(struct tcb *tcp)
10 {
11 	avr32_regs.r12 = tcp->u_rval;
12 	return set_regs(tcp->pid);
13 }
14