lua-users home
lua-l archive

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


> Would this allow the implementation of a completely persistant Lua VM --- so 
> that I could snapshot the entire state of the system to disk, and then 
> restore it later without the system having noticed anything has happened? 
> Rather like Smalltalk images?

Probably. But for a quick alternative, try my lper, which really does
Smalltalk-like images but simply dumping the malloc pool: 
	http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#lper

--lhf