lua-users home
lua-l archive

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


> I'm guessing that lua_xmove's primary purpose is to move stuff from
> stack-to-stack for coroutines in the same overall state.
> 
> What I'd like to know is if it'd work between two distinct states?

No. That would kill the garbage collector... (Each distinct state has
an independent garbage collector.)

-- Roberto