Using C++, lua5.1, luabind 0.7

Lua code:

-- allocates near 8Mb of memory
function fff()
    local t = {}
    for i = 1, 300000 do
        table.insert(t, i)
    end
    return t
end

C++ code:

{
    luaL_dostring(lua_state, "return fff()");
    luabind::object obj(luabind::from_stack(ls, -1));
}
lua_gc(l_, LUA_GCCOLLECT, 0); // collect garbage

Result: Lua still have a 8Mb allocated memory. Garbage collection ignores that table object. It has references anywhere? But where? That table deallocates only on program exit (when "lua_close" function called). How to solve this problem?

Thank you.

link|improve this question

36% accept rate
feedback

1 Answer

up vote 2 down vote accepted

If the code you use is exactly as posted, I'd say there's still a reference in the Lua stack. Try to insert a lua_pop(l, 1) between the luabind::object creation and the lua_gc call.

On a side note, the current stable release of luabind is 0.8.1, there's 0.9-rc also; you might get more answers if you were using some current version (both here and from the luabind-users group)

link|improve this answer
Thank you. This is a solution for this problem, but now I have another relatively similar one - stackoverflow.com/questions/1939864/… – kFk Dec 21 '09 at 12:35
feedback

Your Answer

 
or
required, but never shown

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