HomeSort by: relevance | last modified time | path
    Searched refs:errorJmp (Results 1 - 3 of 3) sorted by relevancy

  /src/external/mit/lua/dist/src/
ldo.c 120 if (L->errorJmp) { /* thread has an error handler? */
121 L->errorJmp->status = errcode; /* set status */
122 LUAI_THROW(L, L->errorJmp); /* jump to it */
127 if (g->mainthread->errorJmp) { /* main thread has a handler? */
146 lj.previous = L->errorJmp; /* chain new error handler */
147 L->errorJmp = &lj;
151 L->errorJmp = lj.previous; /* restore old error handler */
lstate.h 325 struct lua_longjmp *errorJmp; /* current error recover point */
lstate.c 260 L->errorJmp = NULL;

Completed in 16 milliseconds