** call all pending finalizers */
| 971 | ** call all pending finalizers |
| 972 | */ |
| 973 | static void callallpendingfinalizers (lua_State *L, int propagateerrors) { |
| 974 | global_State *g = G(L); |
| 975 | while (g->tobefnz) { |
| 976 | resetoldbit(g->tobefnz); |
| 977 | GCTM(L, propagateerrors); |
| 978 | } |
| 979 | } |
| 980 | |
| 981 | |
| 982 | void luaC_freeallobjects (lua_State *L) { |
no test coverage detected