From 5b82f868abfc84512c11b7c2cfa6e89af30ab203 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Sat, 7 Jan 2006 16:21:05 +0000 Subject: [PATCH 1/1] i think it is not fatal when a socketnotifier doesnt handle all POLL signals (like POLLERR or POLLHUP) --- lib/base/ebase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/ebase.cpp b/lib/base/ebase.cpp index ffd35ece..04b15ee8 100644 --- a/lib/base/ebase.cpp +++ b/lib/base/ebase.cpp @@ -213,7 +213,7 @@ int eMainloop::processOneEvent(unsigned int user_timeout) (*li)->activate(pfd[i].revents); } if ((pfd[i].revents&~handled) & (POLLERR|POLLHUP|POLLNVAL)) - eFatal("poll: unhandled POLLERR/HUP/NVAL for fd %d(%d)", pfd[i].fd, pfd[i].revents); + eDebug("poll: unhandled POLLERR/HUP/NVAL for fd %d(%d)", pfd[i].fd, pfd[i].revents); } ret = 1; /* poll did not timeout. */ -- 2.30.2