[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: GC "survey"
- From: Roberto Ierusalimschy <roberto@...>
- Date: Tue, 27 Aug 2002 09:53:59 -0300
> The idea is to keep separate lists for each type of object (thus
> eliminating the vtype variable) and not storing an explicit "marked"
> value -- instead, the marked status is determined by which list the
> object is linked into (white, gray, or black).
Are you sure you can do that? You need a fast way to check the color
of an object while running the mutator.
-- Roberto