[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: state of the Lua nation on resource cleanup
- From: Roberto Ierusalimschy <roberto@...>
- Date: Fri, 13 Feb 2009 12:18:48 -0200
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