[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Yielding
- From: Roberto Ierusalimschy <roberto@...>
- Date: Mon, 23 Dec 2002 17:44:16 +0000
> Is it possible to yield from the opcode count hook under Lua 5.0 beta?
Yes. Just finish your hook with
lua_yield(L, 0);
-- Roberto