MCPcopy Create free account
hub / github.com/F-Stack/f-stack / growstack

Function growstack

freebsd/contrib/openzfs/module/lua/lapi.c:83–86  ·  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

81** capturing memory errors
82*/
83static void growstack (lua_State *L, void *ud) {
84 int size = *(int *)ud;
85 luaD_growstack(L, size);
86}
87
88
89LUA_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