Re: Collecting dead strings
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Collecting dead strings
- From: David Jones <drj@...>
- Date: 2006年6月23日 11:16:31 +0100
On 23 Jun 2006, at 11:03, Research wrote:
Hi,
I need to know how to properly destroy my lua code when it's no
longer needed in my game engine.
If I have:
function f29d8()
-- some code
end
foo = f29d8
fooTable = t29d8
t29d8.scriptFunction = f29d8
Is setting f29d8 = nil and t29d8 = nil good enough to cause foo and
fooTable to be garbage collected if I call lua_setgcthreshold(L, 0)?
No.
Or do I need to explicitly set each reference to nil too?
Yes.
drj