MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / markbeingfnz

Function markbeingfnz

lib/lua/src/lgc.c:345–353  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

343** mark all objects in list of being-finalized
344*/
345static lu_mem markbeingfnz (global_State *g) {
346 GCObject *o;
347 lu_mem count = 0;
348 for (o = g->tobefnz; o != NULL; o = o->next) {
349 count++;
350 markobject(g, o);
351 }
352 return count;
353}
354
355
356/*

Callers 2

restartcollectionFunction · 0.85
atomicFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected