** mark all objects in list of being-finalized */
| 309 | ** mark all objects in list of being-finalized |
| 310 | */ |
| 311 | static void markbeingfnz (global_State *g) { |
| 312 | GCObject *o; |
| 313 | for (o = g->tobefnz; o != NULL; o = gch(o)->next) { |
| 314 | makewhite(g, o); |
| 315 | reallymarkobject(g, o); |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | |
| 320 | /* |
no test coverage detected