MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / callallpendingfinalizers

Function callallpendingfinalizers

third-party/lua-5.2.4/src/lgc.c:974–980  ·  view source on GitHub ↗

** call all pending finalizers */

Source from the content-addressed store, hash-verified

972** call all pending finalizers
973*/
974static void callallpendingfinalizers (lua_State *L, int propagateerrors) {
975 global_State *g = G(L);
976 while (g->tobefnz) {
977 resetoldbit(g->tobefnz);
978 GCTM(L, propagateerrors);
979 }
980}
981
982
983void luaC_freeallobjects (lua_State *L) {

Callers 2

luaC_freeallobjectsFunction · 0.70
luaC_fullgcFunction · 0.70

Calls 1

GCTMFunction · 0.70

Tested by

no test coverage detected