up vote 1 down vote favorite
share [g+] share [fb]

How can I free the lua stack?

link|improve this question

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

3 Answers

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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