diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2010-08-02 16:46:12 -0700 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2010-08-02 16:46:12 -0700 |
commit | 5a42321d438211210e0869e5e90f8d75d1354e14 (patch) | |
tree | 0808c239ed05760445e989c5681acd039c26c4f4 /hurd/hurdselect.c | |
parent | 73507d3ae077c2dcf0da857a5a244deff3d4d223 (diff) | |
download | glibc-5a42321d438211210e0869e5e90f8d75d1354e14.zip glibc-5a42321d438211210e0869e5e90f8d75d1354e14.tar.gz glibc-5a42321d438211210e0869e5e90f8d75d1354e14.tar.bz2 |
Hurd: fix timeout rounding in select
Diffstat (limited to 'hurd/hurdselect.c')
-rw-r--r-- | hurd/hurdselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdselect.c b/hurd/hurdselect.c index 544eee9..a7228f0 100644 --- a/hurd/hurdselect.c +++ b/hurd/hurdselect.c @@ -52,7 +52,7 @@ _hurd_select (int nfds, int firstfd, lastfd; mach_msg_timeout_t to = (timeout != NULL ? (timeout->tv_sec * 1000 + - timeout->tv_nsec / 1000000) : + (timeout->tv_nsec + 999999) / 1000000) : 0); struct { |