MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / markbeingfnz

Function markbeingfnz

extlibs/lua/src/lgc.c:315–323  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

313** mark all objects in list of being-finalized
314*/
315static lu_mem markbeingfnz (global_State *g) {
316 GCObject *o;
317 lu_mem count = 0;
318 for (o = g->tobefnz; o != NULL; o = o->next) {
319 count++;
320 markobject(g, o);
321 }
322 return count;
323}
324
325
326/*

Callers 2

restartcollectionFunction · 0.85
atomicFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected