MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / luaD_growstack

Function luaD_growstack

Source/Misc/lua/src/lua.c:5307–5312  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5305
5306
5307void luaD_growstack (lua_State *L, int n) {
5308if (n <= L->stacksize) /* double size is enough? */
5309luaD_reallocstack(L, 2*L->stacksize);
5310else
5311luaD_reallocstack(L, L->stacksize + n);
5312}
5313
5314
5315static CallInfo *growCI (lua_State *L) {

Callers

nothing calls this directly

Calls 1

luaD_reallocstackFunction · 0.85

Tested by

no test coverage detected