From 7a5f494cabc2412fdff8a176099e26964ea4ba78 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Mon, 26 May 2008 18:41:35 +0000 Subject: scripts: add a script which prints memory map of running busybox --- scripts/sample_pmap | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 scripts/sample_pmap (limited to 'scripts/sample_pmap') 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 @@ +#!/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 -- cgit v1.2.3