diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-17 00:35:15 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-17 00:35:15 +0000 |
commit | a6163ca355464b34513723b82ba24f0d001d8332 (patch) | |
tree | d848b80df74bc965f990bf88fd5fc68ac46a432b /procps | |
parent | ab47eeee6aeadd5afd78026d34dfcea129e63dce (diff) | |
download | busybox-w32-a6163ca355464b34513723b82ba24f0d001d8332.tar.gz busybox-w32-a6163ca355464b34513723b82ba24f0d001d8332.tar.bz2 busybox-w32-a6163ca355464b34513723b82ba24f0d001d8332.zip |
install: fix install a b /a/link/to/dir
install: fix -s (strip) option
nmeter: add TODO
Diffstat (limited to 'procps')
-rw-r--r-- | procps/nmeter.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/procps/nmeter.c b/procps/nmeter.c index 1d58eb2c1..4f78a1489 100644 --- a/procps/nmeter.c +++ b/procps/nmeter.c | |||
@@ -11,9 +11,14 @@ | |||
11 | // /proc/stat: | 11 | // /proc/stat: |
12 | // disk_io: (3,0):(22272,17897,410702,4375,54750) | 12 | // disk_io: (3,0):(22272,17897,410702,4375,54750) |
13 | // btime 1059401962 | 13 | // btime 1059401962 |
14 | //TODO: use sysinfo libc call/syscall, if appropriate | ||
15 | // (faster than open/read/close): | ||
16 | // sysinfo({uptime=15017, loads=[5728, 15040, 16480] | ||
17 | // totalram=2107416576, freeram=211525632, sharedram=0, bufferram=157204480} | ||
18 | // totalswap=134209536, freeswap=134209536, procs=157}) | ||
14 | 19 | ||
15 | #include "libbb.h" | ||
16 | #include <time.h> | 20 | #include <time.h> |
21 | #include "libbb.h" | ||
17 | 22 | ||
18 | typedef unsigned long long ullong; | 23 | typedef unsigned long long ullong; |
19 | 24 | ||