Re: interrupting coroutines (was Re: Local Variables)
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: interrupting coroutines (was Re: Local Variables)
- From: Roberto Ierusalimschy <roberto@...>
- Date: 2014年8月12日 10:54:03 -0300
> void signal_handler(int sig)
> {
> if (!gsig)
> {
> gsig = sig;
> ghookcount = lua_gethookcount(gL);
> ghookmask = lua_gethookmask(gL);
> ghook = lua_gethook(gL);
> lua_sethook(gL,luasigbackend,LUA_MASKCALL | LUA_MASKRET | LUA_MASKCOUNT,1);
> }
> }
What is "gL" here?
-- Roberto