** Finish a young-generation collection. */
| 1122 | ** Finish a young-generation collection. |
| 1123 | */ |
| 1124 | static void finishgencycle (lua_State *L, global_State *g) { |
| 1125 | correctgraylists(g); |
| 1126 | checkSizes(L, g); |
| 1127 | g->gcstate = GCSpropagate; /* skip restart */ |
| 1128 | if (!g->gcemergency) |
| 1129 | callallpendingfinalizers(L); |
| 1130 | } |
| 1131 | |
| 1132 | |
| 1133 | /* |
no test coverage detected