[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: w5 GC bug regression? [Re: lua51w4-rvm segmentation fault]
- From: Roberto Ierusalimschy <roberto@...>
- Date: Fri, 18 Mar 2005 13:08:37 -0300
> but __gc runs triggered by lua_close() will be able to reach dead
> objects (and not necessarily know it) -- ouch.
That is not correct. __gc runs triggered by lua_close() are able to
reach finalized objects, but not dead ones. lua_close only starts
killing objects after all __gc methods were called. (At least this
is what should happen. There may be a bug somewhere...)
-- Roberto