-
Notifications
You must be signed in to change notification settings - Fork 467
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Epoll failure on interrupted system call #134
Comments
Did you see the error message only once or did it occur repeatedly? Is there maybe any hint in |
I run The reason why I suspect this was a premature exit, is that 3 out of 4 processes had already finished (their CPU usage was zero), and the size of one of the output files was 25% smaller than the three other, which were basically equal in size. I'm not sure whether this is relevant for this issue, but another observation: The reported |
I took a log at the logs, and there were no signs of OOM killer. However, I noticed that the timestamp of log message was incorrect (I redirect Therefore, this issue is a user error. The problem described in the previous message is real, though. |
I ran
massdns
for several hours to resolve large number of domains, and it quit prematurely withThis comes from https://github.com/blechschmidt/massdns/blob/master/src/main.c#L2013.
I'm not expert on this, but maybe
epoll_wait()
failures due to signal interrupts could be ignored?At least that the understanding I got from e.g. https://stackoverflow.com/a/6870391
The text was updated successfully, but these errors were encountered: