diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-05-08 17:50:10 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2024-05-08 17:50:10 -0300 |
commit | 262dc5729a28b2bad0b6413d4eab2290d14395cf (patch) | |
tree | c92cbf6c6d5d88bc352dd71f7f27be4dd44cf16f /lgc.h | |
parent | 9d985db7bb09c92b5b3fa660fffe5907d01e6a02 (diff) | |
download | lua-262dc5729a28b2bad0b6413d4eab2290d14395cf.tar.gz lua-262dc5729a28b2bad0b6413d4eab2290d14395cf.tar.bz2 lua-262dc5729a28b2bad0b6413d4eab2290d14395cf.zip |
Details
Corrections in comments and manual. Added note in the manual about
local variables in the REPL.
Diffstat (limited to 'lgc.h')
-rw-r--r-- | lgc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -135,7 +135,7 @@ | |||
135 | ** | 135 | ** |
136 | ** To keep its invariants, the generational mode uses the same barriers | 136 | ** To keep its invariants, the generational mode uses the same barriers |
137 | ** also used by the incremental mode. If a young object is caught in a | 137 | ** also used by the incremental mode. If a young object is caught in a |
138 | ** foward barrier, it cannot become old immediately, because it can | 138 | ** forward barrier, it cannot become old immediately, because it can |
139 | ** still point to other young objects. Instead, it becomes 'old0', | 139 | ** still point to other young objects. Instead, it becomes 'old0', |
140 | ** which in the next cycle becomes 'old1'. So, 'old0' objects is | 140 | ** which in the next cycle becomes 'old1'. So, 'old0' objects is |
141 | ** old but can point to new and survival objects; 'old1' is old | 141 | ** old but can point to new and survival objects; 'old1' is old |