Improved accuracy
This commit is contained in:
parent
904669f128
commit
80b8de6cc3
1 changed files with 6 additions and 7 deletions
|
@ -348,17 +348,16 @@ int WaitForRewindSessionEnd(struct RewindContext* context, struct RewindSessionP
|
||||||
threshold2.tv_sec = 0;
|
threshold2.tv_sec = 0;
|
||||||
threshold2.tv_usec = 0;
|
threshold2.tv_usec = 0;
|
||||||
}
|
}
|
||||||
|
if ((threshold2.tv_sec != 0) &&
|
||||||
|
(timercmp(&now, &threshold2, >)))
|
||||||
|
{
|
||||||
|
// No active sessions during <interval2>
|
||||||
|
return CLIENT_ERROR_SUCCESS;
|
||||||
|
}
|
||||||
state |= 0b10;
|
state |= 0b10;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((threshold2.tv_sec != 0) &&
|
|
||||||
(timercmp(&now, &threshold2, >)))
|
|
||||||
{
|
|
||||||
// No active sessions during <interval2>
|
|
||||||
return CLIENT_ERROR_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (state == 0b11)
|
if (state == 0b11)
|
||||||
{
|
{
|
||||||
// Got REWIND_TYPE_KEEP_ALIVE and REWIND_TYPE_SESSION_POLL
|
// Got REWIND_TYPE_KEEP_ALIVE and REWIND_TYPE_SESSION_POLL
|
||||||
|
|
Loading…
Add table
Reference in a new issue