summaryrefslogtreecommitdiff
path: root/sys/src/libc/68000/notejmp.c
blob: 61562d4411460b81e9856203ea60596ee5a4ff82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <u.h>
#include <libc.h>
#define UREGVARSZ 4	/* not right but doesn't matter */
#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->usp = j[JMPBUFSP] + 4;
	noted(NCONT);
}