** mark all objects in list of being-finalized */
| 386 | ** mark all objects in list of being-finalized |
| 387 | */ |
| 388 | static void markbeingfnz (global_State *g) { |
| 389 | GCObject *o; |
| 390 | for (o = g->tobefnz; o != NULL; o = o->next) |
| 391 | markobject(g, o); |
| 392 | } |
| 393 | |
| 394 | |
| 395 | /* |
no outgoing calls
no test coverage detected