git: 9front

ref: b2f53f0261b11c2ed6655f4087f3bf9aa0eb1c36
dir: /sys/src/libc/alpha/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->r0 = ret;
	if(ret == 0)
		r->r0 = 1;
	r->pc = j[JMPBUFPC];
	r->sp = j[JMPBUFSP];
	noted(NCONT);
}