mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-04-21 18:10:42 +02:00
WaitForSomething: Ignore EAGAIN
If select ever returns EAGAIN, don't bother complaining.
(cherry picked from commit 85dd8efac1)
This commit is contained in:
parent
259f86b13b
commit
27da1367c9
1 changed files with 1 additions and 1 deletions
|
|
@ -262,7 +262,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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue