lua-users home
lua-l archive

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


> Could you please confirm that the Lua 5.2.0 work 3 includes the fix
> to this GC-in-another-thread-while-jump issue?

I moved the threadyield call to points where the GC may be called;
these points can trigger finalizers and therefore Lua must be ready to
all kinds of changes there. (This makes tight loops that do not create
objects "atomic", however.)

-- Roberto