Fixed timed event wait on Linux.
Was causing an error message and the DeadlockDetect didn't work.
This commit is contained in:
parent
493100bdb0
commit
539ae20466
@ -144,24 +144,19 @@ cEvent::eWaitResult cEvent::Wait(int a_TimeoutMilliSec)
|
||||
timeout.tv_sec = a_TimeoutMilliSec / 1000;
|
||||
timeout.tv_nsec = (a_TimeoutMilliSec % 1000) * 1000000;
|
||||
int res = sem_timedwait(m_Event, &timeout);
|
||||
switch (res)
|
||||
{
|
||||
case 0:
|
||||
if (res == 0)
|
||||
{
|
||||
// The semaphore was signalled
|
||||
return wrSignalled;
|
||||
}
|
||||
case ETIMEDOUT:
|
||||
int err = errno;
|
||||
if (err == ETIMEDOUT)
|
||||
{
|
||||
// The timeout was hit
|
||||
return wrTimeout;
|
||||
}
|
||||
default:
|
||||
{
|
||||
LOGWARNING("cEvent: timed-waiting for the event failed: %i, errno = %i. Continuing, but server may be unstable.", res, errno);
|
||||
LOGWARNING("cEvent: timed-waiting for the event failed: %i, errno = %i. Continuing, but server may be unstable.", res, err);
|
||||
return wrError;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user