summaryrefslogtreecommitdiff
path: root/sys/src/libc/arm/notejmp.c
blob: a8a555022e5e37170bad56ec273dc6c68a935f10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <u.h>
#include <libc.h>
#include <ureg.h>

void
notejmp(void *vr, jmp_buf j, int ret)
{
	struct Ureg *r = vr;

	r->r0 = ret;
	if(ret == 0)
		r->r0 = 1;
	r->pc = j[JMPBUFPC];
	r->r13 = j[JMPBUFSP];
	noted(NCONT);
}