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

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