summaryrefslogtreecommitdiff
path: root/sys/src/libc/amd64/notejmp.c
blob: 100c41e4c7153a805042f9b1ee58e79fabf67a05 (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->ax = ret;
	if(ret == 0)
		r->ax = 1;
	r->pc = j[JMPBUFPC];
	r->sp = j[JMPBUFSP] + 8;
	noted(NCONT);
}