** mark all objects in list of being-finalized */
| 313 | ** mark all objects in list of being-finalized |
| 314 | */ |
| 315 | static lu_mem markbeingfnz (global_State *g) { |
| 316 | GCObject *o; |
| 317 | lu_mem count = 0; |
| 318 | for (o = g->tobefnz; o != NULL; o = o->next) { |
| 319 | count++; |
| 320 | markobject(g, o); |
| 321 | } |
| 322 | return count; |
| 323 | } |
| 324 | |
| 325 | |
| 326 | /* |
no outgoing calls
no test coverage detected