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