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