** call all pending finalizers */
| 997 | ** call all pending finalizers |
| 998 | */ |
| 999 | static void callallpendingfinalizers (lua_State *L) { |
| 1000 | global_State *g = G(L); |
| 1001 | while (g->tobefnz) |
| 1002 | GCTM(L); |
| 1003 | } |
| 1004 | |
| 1005 | |
| 1006 | /* |
no test coverage detected