MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / luaD_callnoyield

Function luaD_callnoyield

src/Chain/libraries/glua/ldo.cpp:535–539  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

533** Similar to 'luaD_call', but does not allow yields during the call
534*/
535void luaD_callnoyield(lua_State *L, StkId func, int nResults) {
536 L->nny++;
537 luaD_call(L, func, nResults);
538 L->nny--;
539}
540
541
542/*

Callers 5

luaT_callTMFunction · 0.85
luaG_errormsgFunction · 0.85
dothecallFunction · 0.85
lua_callkFunction · 0.85
f_callFunction · 0.85

Calls 1

luaD_callFunction · 0.85

Tested by

no test coverage detected