diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-04-26 14:55:18 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-04-26 14:55:18 -0300 |
commit | de794a6527058e75b674118b35f39dcbb13e88b1 (patch) | |
tree | 3699604543f09398d7aa62729309c3685354ed83 /lgc.c | |
parent | 8b83417de982d068bd92e0428a42ca0cdd909789 (diff) | |
download | lua-de794a6527058e75b674118b35f39dcbb13e88b1.tar.gz lua-de794a6527058e75b674118b35f39dcbb13e88b1.tar.bz2 lua-de794a6527058e75b674118b35f39dcbb13e88b1.zip |
Towards release 5.4.7
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |