4
Fork 0

Improved accuracy

This commit is contained in:
Artem Prilutskiy 2017-06-08 15:47:40 +03:00
parent 904669f128
commit 80b8de6cc3

View file

@ -348,16 +348,15 @@ int WaitForRewindSessionEnd(struct RewindContext* context, struct RewindSessionP
threshold2.tv_sec = 0; threshold2.tv_sec = 0;
threshold2.tv_usec = 0; threshold2.tv_usec = 0;
} }
state |= 0b10;
break;
}
if ((threshold2.tv_sec != 0) && if ((threshold2.tv_sec != 0) &&
(timercmp(&now, &threshold2, >))) (timercmp(&now, &threshold2, >)))
{ {
// No active sessions during <interval2> // No active sessions during <interval2>
return CLIENT_ERROR_SUCCESS; return CLIENT_ERROR_SUCCESS;
} }
state |= 0b10;
break;
}
if (state == 0b11) if (state == 0b11)
{ {