scripts: add a script which prints memory map of running busybox
This commit is contained in:
parent
c47e8978fe
commit
7a5f494cab
@ -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
11
scripts/sample_pmap
Executable 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
|
Loading…
Reference in New Issue
Block a user