Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/libc/mips/notejmp.c
#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); }