diff options
author | Pierre Pfister <ppfister@cisco.com> | 2017-04-04 15:55:21 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-04-11 09:50:34 +0000 |
commit | ecba903bcfc5046b0d8aee18433ab9fc09c6a68f (patch) | |
tree | 84cafa501d1069bc4f1dc53f1427bb7c326515c6 /src | |
parent | b498eeb6a75fda19e54c712ec176f78f95c7a754 (diff) |
Fix typo in minimal epoll polling time
epoll was supposed to not sleep when timeout
is less than 1ms, but a typo made it not sleep
any time the requested timeout is lower than
1000 seconds (in practice, never...).
This patch replaces "1e3" with "1e-3", which
represents 1ms.
Change-Id: I731851b27a6bf6ab8e41586e017e94b962b09bf3
Signed-off-by: Pierre Pfister <ppfister@cisco.com>
(cherry picked from commit ec06222ae189fe8d84b63410130fff04bf446573)
Diffstat (limited to 'src')
-rw-r--r-- | src/vlib/unix/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vlib/unix/input.c b/src/vlib/unix/input.c index 7b4183a4a70..73783d13c89 100644 --- a/src/vlib/unix/input.c +++ b/src/vlib/unix/input.c @@ -130,7 +130,7 @@ linux_epoll_input (vlib_main_t * vm, * vm->clib_time.seconds_per_clock) /* subtract off some slop time */ - 50e-6; - if (timeout < 1e3) + if (timeout < 1e-3) { /* We have event happenning in less than 1 ms so don't allow epoll to wait */ |