MCPcopy Create free account
hub / github.com/DFHack/dfhack / luaD_callnoyield

Function luaD_callnoyield

depends/lua/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.85
luaG_errormsgFunction · 0.85
lua_callkFunction · 0.85
f_callFunction · 0.85
dothecallFunction · 0.85

Calls 1

luaD_callFunction · 0.85

Tested by

no test coverage detected