You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
275 B
16 lines
275 B
#include <setjmp.h>
|
|
#include <stdio.h>
|
|
#include "nlr.h"
|
|
|
|
#if MICROPY_NLR_SETJMP
|
|
|
|
nlr_buf_t *nlr_setjmp_top;
|
|
|
|
void nlr_setjmp_jump(void *val) {
|
|
nlr_buf_t *buf = nlr_setjmp_top;
|
|
nlr_setjmp_top = buf->prev;
|
|
buf->ret_val = val;
|
|
longjmp(buf->jmpbuf, 1);
|
|
}
|
|
|
|
#endif
|
|
|