mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
WaitForSomething: Ignore EAGAIN
If select ever returns EAGAIN, don't bother complaining.
This commit is contained in:
@@ -257,7 +257,7 @@ WaitForSomething(int *pClientsReady)
|
||||
FatalError("WaitForSomething(): select: errno=%d\n",
|
||||
selecterr);
|
||||
}
|
||||
else if (selecterr != EINTR)
|
||||
else if (selecterr != EINTR && selecterr != EAGAIN)
|
||||
{
|
||||
ErrorF("WaitForSomething(): select: errno=%d\n",
|
||||
selecterr);
|
||||
|
||||
Reference in New Issue
Block a user