Re: Lua 5.1 work 0 bug reports?
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Lua 5.1 work 0 bug reports?
- From: Roberto Ierusalimschy <roberto@...>
- Date: 2004年7月06日 10:02:00 -0300
> * While finalizing objects, we can end up triggering the garbage
> collector which results in a more or less infinite recursion:
Each time GCTM is called, it removes one userdata from the list. So,
this (rare) recursion should have a limit.
> * I get an error at the assertion in propagatemarks: lua_assert(isgray(o)).
Do you know the type of `o'?
> * Documentation: The comments explaining the bits in lgc.h don't seem to
> match with the constants.
Sorry about that.
> * I believe that lua_setfenv needs a write barrier. Adding one made
> another bug I was hunting down go away.
Uau, this one is unforgivable :( Sorry again.
-- Roberto