** Finish a young-generation collection. */
| 1208 | ** Finish a young-generation collection. |
| 1209 | */ |
| 1210 | static void finishgencycle (lua_State *L, global_State *g) { |
| 1211 | correctgraylists(g); |
| 1212 | checkSizes(L, g); |
| 1213 | g->gcstate = GCSpropagate; /* skip restart */ |
| 1214 | if (!g->gcemergency) |
| 1215 | callallpendingfinalizers(L); |
| 1216 | } |
| 1217 | |
| 1218 | |
| 1219 | /* |
no test coverage detected