util.signal: Restore the old debug hook earlier, just in case we receive another signal between clearing the signal queue and restoring it
authorMatthew Wild <mwild1@gmail.com>
Sun, 10 Jan 2010 03:54:29 +0000
changeset 2792 1b14388f1512
parent 2791 e23b642bdfd1
child 2793 08892e3f24bd
util.signal: Restore the old debug hook earlier, just in case we receive another signal between clearing the signal queue and restoring it
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)