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