shithub: riscv

ref: e02e1188e472c7e2f40fa84e839631cc54f505a0
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);
}