Software /
code /
prosody
Changeset
2792:1b14388f1512
util.signal: Restore the old debug hook earlier, just in case we receive another signal between clearing the signal queue and restoring it
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 10 Jan 2010 03:54:29 +0000 |
parents | 2791:e23b642bdfd1 |
children | 2793:08892e3f24bd |
files | util-src/lsignal.c |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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)