Tagged Questions
1
vote
1answer
386 views
Luabind class deriving problem (memory 'leak')
Using luabind 0.81
Simple test to illustrate the problem:
1)
class 'A'
function A:__init()
print('A init\n')
end
function A:__finalize()
print('A finalize\n')
end
do
local obj = A()
...
1
vote
3answers
962 views
Storing a lua class with parent in luabind::object (updated)
Using C++, lua 5.1, luabind 0.7-0.81
Trying to create a lua class with parent and store it in a luabind::object.
Lua
class 'TestClassParent'
function TestClassParent:__init()
print('parent ...
1
vote
1answer
319 views
Problem with luabind::object dereferencing (simplified)
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:
{
...
1
vote
2answers
609 views
Lost references in Lua
Having a problem with objects, not needed any more but still having references.
Result: size of allocated memory is constantly growing due to not collected objects.
How to solve this sort of problem?
...