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

Function luaD_reallocCI

Source/Misc/lua/src/lua.c:5298–5304  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5296
5297
5298void luaD_reallocCI (lua_State *L, int newsize) {
5299CallInfo *oldci = L->base_ci;
5300luaM_reallocvector(L, L->base_ci, L->size_ci, newsize, CallInfo);
5301L->size_ci = newsize;
5302L->ci = (L->ci - oldci) + L->base_ci;
5303L->end_ci = L->base_ci + L->size_ci - 1;
5304}
5305
5306
5307void luaD_growstack (lua_State *L, int n) {

Callers 3

restore_stack_limitFunction · 0.85
growCIFunction · 0.85
checkstacksizesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected