lua-users home
lua-l archive

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


> I see that the later failing Timer object
> is moved from 'finobj' to 'tobefnz' in the function separatetobefnz.

This is actually not the case.  The Timer is still in the finobj list,
but is not moved to the tobefnz list.  (I still struggle to understand the gc)

So only the callback is collected, even if it's in a table(mode='k') where
the timer is the key.

- Jörg