# HG changeset patch # User Matthew Wild # Date 1263095669 0 # Node ID 1b14388f1512a9f504c22232f1fa3024446daad4 # Parent e23b642bdfd1643b74e91800c8dc4ab90321235a util.signal: Restore the old debug hook earlier, just in case we receive another signal between clearing the signal queue and restoring it diff -r e23b642bdfd1 -r 1b14388f1512 util-src/lsignal.c --- a/util-src/lsignal.c Sun Jan 10 00:31:38 2010 +0000 +++ b/util-src/lsignal.c Sun Jan 10 03:54:29 2010 +0000 @@ -165,6 +165,9 @@ static void sighook(lua_State *L, lua_Debug *ar) { + /* restore the old hook */ + lua_sethook(L, Hsig, Hmask, Hcount); + lua_pushstring(L, LUA_SIGNAL); lua_gettable(L, LUA_REGISTRYINDEX); @@ -180,8 +183,6 @@ lua_pop(L, 1); /* pop lua_signal table */ - /* restore the old hook */ - lua_sethook(L, Hsig, Hmask, Hcount); } static void handle(int sig)