** mark all objects in list of being-finalized */
| 297 | ** mark all objects in list of being-finalized |
| 298 | */ |
| 299 | static void markbeingfnz (global_State *g) { |
| 300 | GCObject *o; |
| 301 | for (o = g->tobefnz; o != NULL; o = o->next) |
| 302 | markobject(g, o); |
| 303 | } |
| 304 | |
| 305 | |
| 306 | /* |
no outgoing calls
no test coverage detected