diff options
author | Denys Vlasenko | 2016-03-15 16:13:23 +0100 |
---|---|---|
committer | Denys Vlasenko | 2016-03-15 16:13:23 +0100 |
commit | 41b1e2c39238ef1f333588b9a857e5af806bd157 (patch) | |
tree | e441860654f9b8c6233a57ae543297930c7d073c /procps/nmeter.c | |
parent | a63e2a8cb2dd0d6819c1844c52344c3bd6f73659 (diff) | |
download | busybox-41b1e2c39238ef1f333588b9a857e5af806bd157.zip busybox-41b1e2c39238ef1f333588b9a857e5af806bd157.tar.gz |
nmeter: remove undocumented %NNNd specifier
function old new delta
nmeter_main 707 745 +38
init_functions 48 44 -4
init_delay 63 - -63
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 1/1 up/down: 38/-67) Total: -29 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps/nmeter.c')
-rw-r--r-- | procps/nmeter.c | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/procps/nmeter.c b/procps/nmeter.c index 1cc9085..d6c46c6 100644 --- a/procps/nmeter.c +++ b/procps/nmeter.c @@ -342,14 +342,6 @@ static s_stat* init_literal(void) return (s_stat*)s; } -static s_stat* init_delay(const char *param) -{ - delta = strtoul(param, NULL, 0) * 1000; /* param can be "" */ - deltanz = delta > 0 ? delta : 1; - need_seconds = (1000000%deltanz) != 0; - return NULL; -} - static s_stat* init_cr(const char *param UNUSED_PARAM) { G.final_char = '\r'; @@ -817,8 +809,7 @@ static void FAST_FUNC collect_info(s_stat *s) typedef s_stat* init_func(const char *param); -// Deprecated %NNNd is to be removed, -d MSEC supersedes it -static const char options[] ALIGN1 = "ncmsfixptbdr"; +static const char options[] ALIGN1 = "ncmsfixptbr"; static init_func *const init_functions[] = { init_if, init_cpu, @@ -830,7 +821,6 @@ static init_func *const init_functions[] = { init_fork, init_time, init_blk, - init_delay, init_cr }; @@ -853,8 +843,11 @@ int nmeter_main(int argc UNUSED_PARAM, char **argv) is26 = (strstr(buf, " 2.4.") == NULL); } - if (getopt32(argv, "d:", &opt_d)) - init_delay(opt_d); + if (getopt32(argv, "d:", &opt_d)) { + delta = xatou(opt_d) * 1000; + deltanz = delta > 0 ? delta : 1; + need_seconds = (1000000 % deltanz) != 0; + } argv += optind; if (!argv[0]) |