** Finish a young-generation collection. */
| 1235 | ** Finish a young-generation collection. |
| 1236 | */ |
| 1237 | static void finishgencycle (lua_State *L, global_State *g) { |
| 1238 | correctgraylists(g); |
| 1239 | checkSizes(L, g); |
| 1240 | g->gcstate = GCSpropagate; /* skip restart */ |
| 1241 | if (!g->gcemergency) |
| 1242 | callallpendingfinalizers(L); |
| 1243 | } |
| 1244 | |
| 1245 | |
| 1246 | /* |
no test coverage detected