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

Function luaD_growstack

lua/ldo.c:162–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

160
161
162void luaD_growstack (lua_State *L, int n) {
163 if (n <= L->stacksize) /* double size is enough? */
164 luaD_reallocstack(L, 2*L->stacksize);
165 else
166 luaD_reallocstack(L, L->stacksize + n);
167}
168
169
170static CallInfo *growCI (lua_State *L) {

Callers

nothing calls this directly

Calls 1

luaD_reallocstackFunction · 0.85

Tested by

no test coverage detected