diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-01-07 16:21:05 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-01-07 16:21:05 +0000 |
| commit | 5b82f868abfc84512c11b7c2cfa6e89af30ab203 (patch) | |
| tree | 69a2dcf7752984c4ced727d5ed4e9bf06a432ec2 /lib/base/ebase.cpp | |
| parent | f7770f3d4b2cd6bc951573d700cb5011a0068759 (diff) | |
| download | enigma2-5b82f868abfc84512c11b7c2cfa6e89af30ab203.tar.gz enigma2-5b82f868abfc84512c11b7c2cfa6e89af30ab203.zip | |
i think it is not fatal when a socketnotifier doesnt handle all POLL signals (like POLLERR or POLLHUP)
Diffstat (limited to 'lib/base/ebase.cpp')
| -rw-r--r-- | lib/base/ebase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |
