lua-users home
lua-l archive

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


On 15 March 2012 13:34, Rodrigo Dias Arruda Senra
<rodrigo.senra@hitecnologia.com.br> wrote:
>
>
> Therefore, it seems that lua_xmove does *not* move across different
> lua_State.
A Lua Thread is a Lua State and as long as G(L) and G(thread) are the
same is does move as is written in the docs. Without error checking
you _may_ also be able (yet not really allowed) to move primitives to
unrelated states.

Liam