How can I free the lua stack?
feedback
|
|
Why do you want to do this? If you need to remove all elements in Lua stack, you should call
This would subject all elements in stack to garbage collection. Call Note that (AFAIK) you can't free space, allocated for the stack itself — unless, of course, you call | |||
|
feedback
|
|
Basically, the only way I know for freeing the whole lua stack is calling lua_close on the lua_State instance. | |||
|
feedback
|
|
I think you need
| |||
|
feedback
|