mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Fix incorrect comment in lgc.h (#1288)
The comment gave an incorrect (reversed) version of the invariant, which could be confusing for people who haven't read the full description in lgc.cpp. Unfortunately this change is difficult to flag. Fixes #1282.
This commit is contained in:
parent
43bf7c4e05
commit
23b8726203
1 changed files with 4 additions and 5 deletions
|
@ -23,11 +23,10 @@
|
||||||
#define GCSsweep 4
|
#define GCSsweep 4
|
||||||
|
|
||||||
/*
|
/*
|
||||||
** macro to tell when main invariant (white objects cannot point to black
|
** The main invariant of the garbage collector, while marking objects,
|
||||||
** ones) must be kept. During a collection, the sweep
|
** is that a black object can never point to a white one. This invariant
|
||||||
** phase may break the invariant, as objects turned white may point to
|
** is not being enforced during a sweep phase, and is restored when sweep
|
||||||
** still-black objects. The invariant is restored when sweep ends and
|
** ends.
|
||||||
** all objects are white again.
|
|
||||||
*/
|
*/
|
||||||
#define keepinvariant(g) ((g)->gcstate == GCSpropagate || (g)->gcstate == GCSpropagateagain || (g)->gcstate == GCSatomic)
|
#define keepinvariant(g) ((g)->gcstate == GCSpropagate || (g)->gcstate == GCSpropagateagain || (g)->gcstate == GCSatomic)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue