** mark all objects in list of being-finalized */
| 343 | ** mark all objects in list of being-finalized |
| 344 | */ |
| 345 | static 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 | /* |
no outgoing calls
no test coverage detected