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