diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-26 18:41:35 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-26 18:41:35 +0000 |
commit | 7a5f494cabc2412fdff8a176099e26964ea4ba78 (patch) | |
tree | b15fb0ca422c09fc5efb8e193a40f22e04931db2 | |
parent | c47e8978febfa26f6f37992697c0e19cb3fd643c (diff) | |
download | busybox-w32-7a5f494cabc2412fdff8a176099e26964ea4ba78.tar.gz busybox-w32-7a5f494cabc2412fdff8a176099e26964ea4ba78.tar.bz2 busybox-w32-7a5f494cabc2412fdff8a176099e26964ea4ba78.zip |
scripts: add a script which prints memory map of running busybox
-rwxr-xr-x | scripts/memusage | 2 | ||||
-rwxr-xr-x | scripts/sample_pmap | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/scripts/memusage b/scripts/memusage index 863b0cb07..4ef5608fd 100755 --- a/scripts/memusage +++ b/scripts/memusage | |||
@@ -3,7 +3,7 @@ | |||
3 | busybox=../busybox | 3 | busybox=../busybox |
4 | 4 | ||
5 | i=4000 | 5 | i=4000 |
6 | echo "Before we started $i copies of 'busybox sleep 10':" | 6 | echo "Before we started $i copies of '$busybox sleep 10':" |
7 | $busybox nmeter '%t %[pn] %m' | head -3 | 7 | $busybox nmeter '%t %[pn] %m' | head -3 |
8 | 8 | ||
9 | while test $i != 0; do | 9 | while test $i != 0; do |
diff --git a/scripts/sample_pmap b/scripts/sample_pmap new file mode 100755 index 000000000..e7fb4571d --- /dev/null +++ b/scripts/sample_pmap | |||
@@ -0,0 +1,11 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | busybox=../busybox | ||
4 | |||
5 | $busybox sleep 10 & | ||
6 | pid=$! | ||
7 | sleep 1 | ||
8 | |||
9 | echo "Memory map of '$busybox sleep 10':" | ||
10 | size $busybox | ||
11 | pmap $pid | env - grep "^[0-9a-f][0-9a-f]* " | sort -r -t " " -k2,999 | ||