From c29f0d16d53523444f8984de8d343162c526cba2 Mon Sep 17 00:00:00 2001 From: Ashish Shenoy Date: Thu, 17 Mar 2022 17:10:40 +0530 Subject: [PATCH] pmap: add page (#7890) --- pages/linux/pmap.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/pmap.md diff --git a/pages/linux/pmap.md b/pages/linux/pmap.md new file mode 100644 index 000000000..812f4569c --- /dev/null +++ b/pages/linux/pmap.md @@ -0,0 +1,24 @@ +# pmap + +> Report memory map of a process or processes. +> More information: . + +- Print memory map for a specific process id (PID): + +`pmap {{pid}}` + +- Show the extended format: + +`pmap --extended {{pid}}` + +- Show the device format: + +`pmap --device {{pid}}` + +- Limit results to a memory address range specified by `low` and `high`: + +`pmap --range {{low}},{{high}}` + +- Print memory maps for multiple processes: + +`pmap {{pid1 pid2 ...}}`