You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
267 B

static int
arch_set_error(struct tcb *tcp)
{
ia64_regs.gr[8] = tcp->u_error;
ia64_regs.gr[10] = -1;
return set_regs(tcp->pid);
}
static int
arch_set_success(struct tcb *tcp)
{
ia64_regs.gr[8] = tcp->u_rval;
ia64_regs.gr[10] = 0;
return set_regs(tcp->pid);
}