vote up 1 vote down star

How can I free the lua stack?

flag

0% accept rate
1  
Why the downvote? This is definitely programming related and I don't se any issues with the language used or anything. – Martinho Fernandes Aug 6 at 11:09
1  
*language as in English – Martinho Fernandes Aug 6 at 11:09

3 Answers

vote up 3 vote down

Basically, the only way I know for freeing the whole lua stack is calling lua_close on the lua_State instance.

link|flag
vote up 2 vote down

I think you need lua_remove? I just skimmed over the manual, not sure if there's a "clear whole stack" function.

void lua_remove (lua_State *L, int index);

Removes the element at the given valid index, shifting down the elements above this index to fill the gap. Cannot be called with a pseudo-index, because a pseudo-index is not an actual stack position.

link|flag
vote up 2 vote down

Why do you want to do this?

If you need to remove all elements in Lua stack, you should call lua_settop(0). To quote manual:

void lua_settop (lua_State *L, int index);

Accepts any acceptable index, or 0, and sets the stack top to this index. If the new top is larger than the old one, then the new elements are filled with nil. If index is 0, then all stack elements are removed.

This would subject all elements in stack to garbage collection. Call lua_gc(LUA_GC_COLLECT) afterwards to do garbage collection. If you really need to collect all collectable garbage, call it in a loop, until value, returned by lua_gc(LUA_GCCOUNT), would stay the same.

Note that (AFAIK) you can't free space, allocated for the stack itself — unless, of course, you call lua_close().

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.