MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / markbeingfnz

Function markbeingfnz

3rd/lua-5.4.3/src/lgc.c:339–347  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

337** mark all objects in list of being-finalized
338*/
339static lu_mem markbeingfnz (global_State *g) {
340 GCObject *o;
341 lu_mem count = 0;
342 for (o = g->tobefnz; o != NULL; o = o->next) {
343 count++;
344 markobject(g, o);
345 }
346 return count;
347}
348
349
350/*

Callers 2

restartcollectionFunction · 0.85
atomicFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected