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

Function markbeingfnz

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

** mark all objects in list of being-finalized */

Source from the content-addressed store, hash-verified

309** mark all objects in list of being-finalized
310*/
311static void markbeingfnz (global_State *g) {
312 GCObject *o;
313 for (o = g->tobefnz; o != NULL; o = gch(o)->next) {
314 makewhite(g, o);
315 reallymarkobject(g, o);
316 }
317}
318
319
320/*

Callers 2

restartcollectionFunction · 0.70
atomicFunction · 0.70

Calls 1

reallymarkobjectFunction · 0.70

Tested by

no test coverage detected