summaryrefslogtreecommitdiffstats
path: root/sysdep
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-06-04 22:27:49 +0200
committerMartin Mares <mj@ucw.cz>1998-06-04 22:27:49 +0200
commit5331da6a4d0c77e70d134fa40b5061b00ab593b0 (patch)
treee41db3c0db911f60f2fa4bac6768d1720a7dfac5 /sysdep
parentfd50083df499dd7aa4dd3eec97171003da300250 (diff)
downloadbird-5331da6a4d0c77e70d134fa40b5061b00ab593b0.tar
bird-5331da6a4d0c77e70d134fa40b5061b00ab593b0.zip
Fixed processing of timers.
Diffstat (limited to 'sysdep')
-rw-r--r--sysdep/unix/io.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c
index a94b8ea..9cab1dc 100644
--- a/sysdep/unix/io.c
+++ b/sysdep/unix/io.c
@@ -709,7 +709,10 @@ io_loop(void)
continue;
}
else
- timo.tv_sec = tout - now;
+ {
+ timo.tv_sec = tout - now;
+ timo.tv_usec = 0;
+ }
hi = 0;
WALK_LIST(n, sock_list)