diff options
Diffstat (limited to 'scripts/sample_pmap')
-rwxr-xr-x | scripts/sample_pmap | 11 |
1 files changed, 11 insertions, 0 deletions
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 | ||