diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-12 03:22:09 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-12 03:22:09 +0200 |
commit | 2bb3772374c54fbf8305763449e30185d4a6807d (patch) | |
tree | 8025d448365b2e79271bf088c41bb0afe8720b0d /util-src | |
parent | afeb1f6f0292fa040718acca4460f049bd2a9a80 (diff) | |
download | prosody-2bb3772374c54fbf8305763449e30185d4a6807d.tar.gz prosody-2bb3772374c54fbf8305763449e30185d4a6807d.zip |
net.server_epoll: Special handling of signal interrupts
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/poll.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util-src/poll.c b/util-src/poll.c index e5b5f70c..0ca0cf28 100644 --- a/util-src/poll.c +++ b/util-src/poll.c @@ -316,6 +316,11 @@ int Lwait(lua_State *L) { lua_pushstring(L, "timeout"); return 2; } + else if(ret < 0 && errno == EINTR) { + lua_pushnil(L); + lua_pushstring(L, "signal"); + return 2; + } else if(ret < 0) { ret = errno; lua_pushnil(L); |