Searched refs:LUA_YIELD (Results 1 – 6 of 6) sorted by relevance
40 if (l_likely(status == LUA_OK || status == LUA_YIELD)) { in auxresume()78 if (stat != LUA_OK && stat != LUA_YIELD) { /* error in the coroutine? */ in luaB_auxwrap()131 case LUA_YIELD: in auxstatus()
38 #define errorstatus(s) ((s) > LUA_YIELD)618 status = LUA_YIELD; /* was interrupted by an yield */ in finishpcallk()657 int status = LUA_YIELD; /* default if there were no errors */ in finishCcall()733 lua_assert(L->status == LUA_YIELD); in resume()743 n = (*ci->u.c.k)(L, LUA_YIELD, ci->u.c.ctx); /* call continuation */ in resume()783 else if (L->status != LUA_YIELD) /* ended with errors? */ in lua_resume()798 *nresults = (status == LUA_YIELD) ? L->ci->u2.nyield in lua_resume()823 L->status = LUA_YIELD; in lua_yieldk()833 luaD_throw(L, LUA_YIELD); in lua_yieldk()
868 if (L->status == LUA_YIELD) { /* did hook yield? */ in luaG_traceexec()873 luaD_throw(L, LUA_YIELD); in luaG_traceexec()
441 if (l_unlikely(status != LUA_OK && status != LUA_YIELD)) { /* error? */ in finishpcall()
331 if (status == LUA_YIELD) in luaE_resetthread()
50 #define LUA_YIELD 1 macro
Completed in 11 milliseconds