[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Problem using lua 5.0
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Thu, 6 Nov 2003 12:00:08 -0200
> lua_setgcthreshold(L, 0); // collected garbage
> lua_close(L);
There's no need to explicitly collect garbage here because lua_close does it
(it frees all memory used by L).
--lhf