lua-users home
lua-l archive

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


> Is there any memory that slips through?  It considers keys,
> values and metatables of tables.

Besides closure stuff like upvalues and environments (already pointed
out by Lisa), you may need to consider also stuff in the C side
(registry). And threads, if your program uses coroutines.

-- Roberto