MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / luaD_callnoyield

Function luaD_callnoyield

third-party/lua-5.3.5/src/ldo.c:507–511  ·  view source on GitHub ↗

** Similar to 'luaD_call', but does not allow yields during the call */

Source from the content-addressed store, hash-verified

505** Similar to 'luaD_call', but does not allow yields during the call
506*/
507void luaD_callnoyield (lua_State *L, StkId func, int nResults) {
508 L->nny++;
509 luaD_call(L, func, nResults);
510 L->nny--;
511}
512
513
514/*

Callers 5

luaT_callTMFunction · 0.70
luaG_errormsgFunction · 0.70
lua_callkFunction · 0.70
f_callFunction · 0.70
dothecallFunction · 0.70

Calls 1

luaD_callFunction · 0.70

Tested by

no test coverage detected