lua-users home
lua-l archive

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


Well, one thing needs to be clear: any solution not based on garbage
collection will not be correct in all cases. More specifically, the
situation where a coroutine yields while using a resource and later
becomes garbage (and therefore will never "finish" its use) can
only be detected through garbage collection.

-- Roberto