OSDN Git Service

libbb: introduce and use monotonic_ms
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 12 Jan 2010 11:52:30 +0000 (12:52 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 12 Jan 2010 11:52:30 +0000 (12:52 +0100)
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>
include/libbb.h
libbb/time.c
miscutils/time.c
networking/udhcp/arpping.c
shell/ash.c

index e07bb52..1159634 100644 (file)
@@ -249,6 +249,7 @@ extern int *const bb_errno;
 
 unsigned long long monotonic_ns(void) FAST_FUNC;
 unsigned long long monotonic_us(void) FAST_FUNC;
+unsigned long long monotonic_ms(void) FAST_FUNC;
 unsigned monotonic_sec(void) FAST_FUNC;
 
 extern void chomp(char *s) FAST_FUNC;
index 82a0fa1..45ae6f3 100644 (file)
@@ -175,6 +175,12 @@ unsigned long long FAST_FUNC monotonic_us(void)
        get_mono(&ts);
        return ts.tv_sec * 1000000ULL + ts.tv_nsec/1000;
 }
+unsigned long long FAST_FUNC monotonic_ms(void)
+{
+       struct timespec ts;
+       get_mono(&ts);
+       return ts.tv_sec * 1000ULL + ts.tv_nsec/1000000;
+}
 unsigned FAST_FUNC monotonic_sec(void)
 {
        struct timespec ts;
@@ -196,6 +202,12 @@ unsigned long long FAST_FUNC monotonic_us(void)
        gettimeofday(&tv, NULL);
        return tv.tv_sec * 1000000ULL + tv.tv_usec;
 }
+unsigned long long FAST_FUNC monotonic_ms(void)
+{
+       struct timeval tv;
+       gettimeofday(&tv, NULL);
+       return tv.tv_sec * 1000ULL + tv.tv_usec / 1000;
+}
 unsigned FAST_FUNC monotonic_sec(void)
 {
        return time(NULL);
index 3421736..5ea0f06 100644 (file)
@@ -70,7 +70,7 @@ static void resuse_end(pid_t pid, resource_t *resp)
                        return;
                }
        }
-       resp->elapsed_ms = (monotonic_us() / 1000) - resp->elapsed_ms;
+       resp->elapsed_ms = monotonic_ms() - resp->elapsed_ms;
 }
 
 static void printargv(char *const *argv)
@@ -371,7 +371,7 @@ static void run_command(char *const *cmd, resource_t *resp)
        void (*interrupt_signal)(int);
        void (*quit_signal)(int);
 
-       resp->elapsed_ms = monotonic_us() / 1000;
+       resp->elapsed_ms = monotonic_ms();
        pid = vfork();          /* Run CMD as child process.  */
        if (pid < 0)
                bb_perror_msg_and_die("fork");
index 4af8534..548796e 100644 (file)
@@ -88,7 +88,7 @@ int FAST_FUNC arpping(uint32_t test_nip,
        timeout_ms = 2000;
        do {
                int r;
-               unsigned prevTime = monotonic_us();
+               unsigned prevTime = monotonic_ms();
 
                pfd[0].events = POLLIN;
                r = safe_poll(pfd, 1, timeout_ms);
@@ -119,7 +119,7 @@ int FAST_FUNC arpping(uint32_t test_nip,
                                break;
                        }
                }
-               timeout_ms -= ((unsigned)monotonic_us() - prevTime) / 1000;
+               timeout_ms -= (unsigned)monotonic_ms() - prevTime;
        } while (timeout_ms > 0);
 
  ret:
index b47f0e8..e668f41 100644 (file)
@@ -12619,7 +12619,7 @@ readcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
        backslash = 0;
 #if ENABLE_ASH_READ_TIMEOUT
        if (timeout) /* NB: ensuring end_ms is nonzero */
-               end_ms = ((unsigned)(monotonic_us() / 1000) + timeout) | 1;
+               end_ms = ((unsigned)monotonic_ms() + timeout) | 1;
 #endif
        STARTSTACKSTR(p);
        do {
@@ -12630,7 +12630,7 @@ readcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
                        struct pollfd pfd[1];
                        pfd[0].fd = fd;
                        pfd[0].events = POLLIN;
-                       timeout = end_ms - (unsigned)(monotonic_us() / 1000);
+                       timeout = end_ms - (unsigned)monotonic_ms();
                        if ((int)timeout <= 0 /* already late? */
                         || safe_poll(pfd, 1, timeout) != 1 /* no? wait... */
                        ) { /* timed out! */