Fixed processing of timers.
This commit is contained in:
parent
fd50083df4
commit
5331da6a4d
1 changed files with 4 additions and 1 deletions
|
@ -709,7 +709,10 @@ io_loop(void)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
timo.tv_sec = tout - now;
|
timo.tv_sec = tout - now;
|
||||||
|
timo.tv_usec = 0;
|
||||||
|
}
|
||||||
|
|
||||||
hi = 0;
|
hi = 0;
|
||||||
WALK_LIST(n, sock_list)
|
WALK_LIST(n, sock_list)
|
||||||
|
|
Loading…
Reference in a new issue