lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> * 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