summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-10 17:11:59 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-10 17:11:59 +0000
commit5a65447e3090908b4bad645c84e37298ca7a7449 (patch)
tree1fb67f517a8519f92e5d5c9876685823dff5b236 /docs
parente8a0788b249cbac5bf5b2aa2d81bb8f6b29a7a4b (diff)
downloadbusybox-w32-5a65447e3090908b4bad645c84e37298ca7a7449.tar.gz
busybox-w32-5a65447e3090908b4bad645c84e37298ca7a7449.tar.bz2
busybox-w32-5a65447e3090908b4bad645c84e37298ca7a7449.zip
top: add config option and code for global CPU % display
Diffstat (limited to 'docs')
-rw-r--r--docs/keep_data_small.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/keep_data_small.txt b/docs/keep_data_small.txt
index f88fe07b0..3ddbd81a4 100644
--- a/docs/keep_data_small.txt
+++ b/docs/keep_data_small.txt
@@ -43,6 +43,16 @@ takes 55k of memory on 64-bit x86 kernel.
43 43
44On 32-bit kernel we need ~26k per applet. 44On 32-bit kernel we need ~26k per applet.
45 45
46Script:
47
48i=1000; while test $i != 0; do
49 echo -n .
50 busybox sleep 30 &
51 i=$((i - 1))
52done
53echo
54wait
55
46(Data from NOMMU arches are sought. Provide 'size busybox' output too) 56(Data from NOMMU arches are sought. Provide 'size busybox' output too)
47 57
48 58