Home
last modified time | relevance | path

Searched refs:errorJmp (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dldo.c108 if (L->errorJmp) { /* thread has an error handler? */ in luaD_throw()
109 L->errorJmp->status = errcode; /* set status */ in luaD_throw()
110 LUAI_THROW(L, L->errorJmp); /* jump to it */ in luaD_throw()
114 if (G(L)->mainthread->errorJmp) { /* main thread has a handler? */ in luaD_throw()
133 lj.previous = L->errorJmp; /* chain new error handler */ in luaD_rawrunprotected()
134 L->errorJmp = &lj; in luaD_rawrunprotected()
138 L->errorJmp = lj.previous; /* restore old error handler */ in luaD_rawrunprotected()
H A Dlstate.h173 struct lua_longjmp *errorJmp; /* current error recover point */ member
H A Dlstate.c207 L->errorJmp = NULL; in preinit_state()