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

Function growstack

third-party/lua-5.2.4/src/lapi.c:86–89  ·  view source on GitHub ↗

** to be called by 'lua_checkstack' in protected mode, to grow stack ** capturing memory errors */

Source from the content-addressed store, hash-verified

84** capturing memory errors
85*/
86static void growstack (lua_State *L, void *ud) {
87 int size = *(int *)ud;
88 luaD_growstack(L, size);
89}
90
91
92LUA_API int lua_checkstack (lua_State *L, int size) {

Callers

nothing calls this directly

Calls 1

luaD_growstackFunction · 0.70

Tested by

no test coverage detected