aboutsummaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-04-26 14:55:18 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-04-26 14:55:18 -0300
commitde794a6527058e75b674118b35f39dcbb13e88b1 (patch)
tree3699604543f09398d7aa62729309c3685354ed83 /lgc.c
parent8b83417de982d068bd92e0428a42ca0cdd909789 (diff)
downloadlua-de794a6527058e75b674118b35f39dcbb13e88b1.tar.gz
lua-de794a6527058e75b674118b35f39dcbb13e88b1.tar.bz2
lua-de794a6527058e75b674118b35f39dcbb13e88b1.zip
Towards release 5.4.7
Diffstat (limited to 'lgc.c')
-rw-r--r--lgc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lgc.c b/lgc.c
index 253a2892..5817f9ee 100644
--- a/lgc.c
+++ b/lgc.c
@@ -1713,7 +1713,7 @@ static void fullinc (lua_State *L, global_State *g) {
1713 /* finish any pending sweep phase to start a new cycle */ 1713 /* finish any pending sweep phase to start a new cycle */
1714 luaC_runtilstate(L, bitmask(GCSpause)); 1714 luaC_runtilstate(L, bitmask(GCSpause));
1715 luaC_runtilstate(L, bitmask(GCSpropagate)); /* start new cycle */ 1715 luaC_runtilstate(L, bitmask(GCSpropagate)); /* start new cycle */
1716 g->gcstate = GCSenteratomic; /* go straight to atomic phase ??? */ 1716 g->gcstate = GCSenteratomic; /* go straight to atomic phase */
1717 luaC_runtilstate(L, bitmask(GCScallfin)); /* run up to finalizers */ 1717 luaC_runtilstate(L, bitmask(GCScallfin)); /* run up to finalizers */
1718 /* estimate must be correct after a full GC cycle */ 1718 /* estimate must be correct after a full GC cycle */
1719 lua_assert(g->GCestimate == gettotalbytes(g)); 1719 lua_assert(g->GCestimate == gettotalbytes(g));