diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-12 12:52:30 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-01-12 12:52:30 +0100 |
commit | f2c8aa6676ebedc34b2cd5089ce6f13c16db1277 (patch) | |
tree | bc728f22666ee367d1c6c085a6cf65570881636c /networking | |
parent | cb23d93c6845df3f2733a32caa4194e60ef871a7 (diff) | |
download | busybox-w32-f2c8aa6676ebedc34b2cd5089ce6f13c16db1277.tar.gz busybox-w32-f2c8aa6676ebedc34b2cd5089ce6f13c16db1277.tar.bz2 busybox-w32-f2c8aa6676ebedc34b2cd5089ce6f13c16db1277.zip |
libbb: introduce and use monotonic_ms
function old new delta
monotonic_ms - 60 +60
process_stdin 433 443 +10
display_speed 85 90 +5
nmeter_main 672 674 +2
builtin_type 114 116 +2
bb__parsespent 117 119 +2
ifplugd_main 1110 1109 -1
acpid_main 441 440 -1
chat_main 1361 1359 -2
doCommands 2458 2449 -9
arpping 466 450 -16
run_command 268 234 -34
readcmd 1072 1034 -38
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 5/7 up/down: 81/-101) Total: -20 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/arpping.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/arpping.c b/networking/udhcp/arpping.c index 4af8534bd..548796e2b 100644 --- a/networking/udhcp/arpping.c +++ b/networking/udhcp/arpping.c | |||
@@ -88,7 +88,7 @@ int FAST_FUNC arpping(uint32_t test_nip, | |||
88 | timeout_ms = 2000; | 88 | timeout_ms = 2000; |
89 | do { | 89 | do { |
90 | int r; | 90 | int r; |
91 | unsigned prevTime = monotonic_us(); | 91 | unsigned prevTime = monotonic_ms(); |
92 | 92 | ||
93 | pfd[0].events = POLLIN; | 93 | pfd[0].events = POLLIN; |
94 | r = safe_poll(pfd, 1, timeout_ms); | 94 | r = safe_poll(pfd, 1, timeout_ms); |
@@ -119,7 +119,7 @@ int FAST_FUNC arpping(uint32_t test_nip, | |||
119 | break; | 119 | break; |
120 | } | 120 | } |
121 | } | 121 | } |
122 | timeout_ms -= ((unsigned)monotonic_us() - prevTime) / 1000; | 122 | timeout_ms -= (unsigned)monotonic_ms() - prevTime; |
123 | } while (timeout_ms > 0); | 123 | } while (timeout_ms > 0); |
124 | 124 | ||
125 | ret: | 125 | ret: |