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

Function luaE_freeCI

freebsd/contrib/openzfs/module/lua/lstate.c:119–127  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117
118
119void luaE_freeCI (lua_State *L) {
120 CallInfo *ci = L->ci;
121 CallInfo *next = ci->next;
122 ci->next = NULL;
123 while ((ci = next) != NULL) {
124 next = ci->next;
125 luaM_free(L, ci);
126 }
127}
128
129
130static void stack_init (lua_State *L1, lua_State *L) {

Callers 2

freestackFunction · 0.85
sweepthreadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected