lua-users home
lua-l archive

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


Florian Weimer wrote:
Can the C memory region associated with a userdata object change its
address during the lifetime of the object?

The GC will not move it (or anything else - it's a non-moving collector), and you cannot move it, so no on both accounts.

- Alex