scripts: add a script which prints memory map of running busybox

This commit is contained in:
Denis Vlasenko 2008-05-26 18:41:35 +00:00
parent c47e8978fe
commit 7a5f494cab
2 changed files with 12 additions and 1 deletions

View File

@ -3,7 +3,7 @@
busybox=../busybox
i=4000
echo "Before we started $i copies of 'busybox sleep 10':"
echo "Before we started $i copies of '$busybox sleep 10':"
$busybox nmeter '%t %[pn] %m' | head -3
while test $i != 0; do

11
scripts/sample_pmap Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
busybox=../busybox
$busybox sleep 10 &
pid=$!
sleep 1
echo "Memory map of '$busybox sleep 10':"
size $busybox
pmap $pid | env - grep "^[0-9a-f][0-9a-f]* " | sort -r -t " " -k2,999