diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-30 23:48:01 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-30 23:48:01 +0100 |
commit | 3c13da3dab539eac948de48640d8862857d0c8d0 (patch) | |
tree | 9cf3ae59b79ca89cbcfe08ce6b2b121f37d54a66 /miscutils | |
parent | 89a55972fd5d7f0ab815c2a62be69a8f34718353 (diff) | |
download | busybox-w32-3c13da3dab539eac948de48640d8862857d0c8d0.tar.gz busybox-w32-3c13da3dab539eac948de48640d8862857d0c8d0.tar.bz2 busybox-w32-3c13da3dab539eac948de48640d8862857d0c8d0.zip |
libbb: introduce and use xgettimeofday(), do not truncate 64-bit time_t in shells
function old new delta
xgettimeofday - 11 +11
get_local_var_value 280 281 +1
svlogd_main 1323 1322 -1
change_epoch 67 66 -1
timestamp_and_log 461 458 -3
hwclock_main 301 298 -3
fmt_time_bernstein_25 135 132 -3
step_time 331 326 -5
script_main 1207 1202 -5
machtime 34 28 -6
curtime 61 54 -7
ts_main 423 415 -8
nmeter_main 761 751 -10
gettime1900d 67 46 -21
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 1/12 up/down: 12/-73) Total: -61 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/ts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/ts.c b/miscutils/ts.c index f2d367654..6e5d77bda 100644 --- a/miscutils/ts.c +++ b/miscutils/ts.c | |||
@@ -47,13 +47,13 @@ int ts_main(int argc UNUSED_PARAM, char **argv) | |||
47 | 47 | ||
48 | #define date_buf bb_common_bufsiz1 | 48 | #define date_buf bb_common_bufsiz1 |
49 | setup_common_bufsiz(); | 49 | setup_common_bufsiz(); |
50 | gettimeofday(&base, NULL); | 50 | xgettimeofday(&base); |
51 | 51 | ||
52 | while ((line = xmalloc_fgets(stdin)) != NULL) { | 52 | while ((line = xmalloc_fgets(stdin)) != NULL) { |
53 | struct timeval ts; | 53 | struct timeval ts; |
54 | struct tm tm_time; | 54 | struct tm tm_time; |
55 | 55 | ||
56 | gettimeofday(&ts, NULL); | 56 | xgettimeofday(&ts); |
57 | if (opt) { | 57 | if (opt) { |
58 | /* -i and/or -s */ | 58 | /* -i and/or -s */ |
59 | struct timeval ts1 = ts1; | 59 | struct timeval ts1 = ts1; |