[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Question about Lua 5.0 and lua_xmove
- From: Roberto Ierusalimschy <roberto@...>
- Date: Thu, 06 Mar 2003 09:52:06 -0300
> 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