lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> There is no way to iterate the heap, thus producing a heap dump is for 
> all intents and purposes impossible (we have tried).

Do you mean the whole heap or only reacheable objects? With the
incremental GC, there are in the heap objects already marked for
release. It would be tricky to iterate over them from Lua.

-- Roberto