aboutsummaryrefslogtreecommitdiff
path: root/linux/sh64/set_error.c
blob: 29293b22ec41639bdcebecc5bbddc4e8626cb95b (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, REG_GENERAL(9), sh64_r9);
}

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