git: 9front

ref: c52ae59ec9f91815b5e889af62a8f35cda0a4e1a
dir: /sys/src/libc/mips/notejmp.c/

View raw version
#include <u.h>
#include <libc.h>
#include <ureg.h>

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

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