lua-users home
lua-l archive

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


> Has weak table iteration become more dangerous in Lua 5.1? Do I need
> to turn off the garbage collector around this code?

Not more dangerous. It is always dangerous to iterate a weak table.
Probably the change to 5.1 only changes the GC schedule, so that
now it happens in bad times.

-- Roberto