Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sample_pmap « scripts - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7fb4571dacc6fd1843ec481c1cd4ae64d56709f (plain)
1
2
3
4
5
6
7
8
9
10
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