MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / lua_call

Function lua_call

lua/lapi.c:783–792  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

781
782
783LUA_API void lua_call (lua_State *L, int nargs, int nresults) {
784 StkId func;
785 lua_lock(L);
786 api_checknelems(L, nargs+1);
787 checkresults(L, nargs, nresults);
788 func = L->top - (nargs+1);
789 luaD_call(L, func, nresults);
790 adjustresults(L, nresults);
791 lua_unlock(L);
792}
793
794
795

Callers 15

luaL_openlibsFunction · 0.85
tracebackFunction · 0.85
luaB_printFunction · 0.85
generic_readerFunction · 0.85
luaB_dofileFunction · 0.85
add_valueFunction · 0.85
luabb_typeconvert_intFunction · 0.85
luaL_callmetaFunction · 0.85
stack_traceFunction · 0.85
foreachiFunction · 0.85
foreachFunction · 0.85
sort_compFunction · 0.85

Calls 1

luaD_callFunction · 0.85

Tested by

no test coverage detected