aboutsummaryrefslogtreecommitdiff
path: root/linux/sh64/set_error.c
blob: 35271fb52ca11213984e5b28ff7b4901380ea8e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
static int
arch_set_error(struct tcb *tcp)
{
	sh64_r9 = -tcp->u_error;
	return upoke(tcp->pid, REG_GENERAL(9), sh64_r9);
}

static int
arch_set_success(struct tcb *tcp)
{
	sh64_r9 = tcp->u_rval;
	return upoke(tcp->pid, REG_GENERAL(9), sh64_r9);
}