diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-09-30 13:10:27 +0200 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-09-30 13:10:27 +0200 |
commit | 6f322df0a549ed9e8b0421f86a9aa985add9b970 (patch) | |
tree | 7387ad5881c9d6d6e9ef4db478d819f67ca585d3 | |
parent | b6f25b16f1f23b0169e8f076e79ee4964b81db99 (diff) | |
download | notes-6f322df0a549ed9e8b0421f86a9aa985add9b970.tar.gz notes-6f322df0a549ed9e8b0421f86a9aa985add9b970.zip |
pmap: add -p -x description
-rw-r--r-- | src/monitor/pmap.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/monitor/pmap.md b/src/monitor/pmap.md index 7c905ae..531ae99 100644 --- a/src/monitor/pmap.md +++ b/src/monitor/pmap.md @@ -1,7 +1,10 @@ # pmap(1) ```markdown -pmap <pid> +pmap [opts] <pid> Dump virtual memory map of process. Compared to /proc/<pid>/maps it shows the size of the mappings. +opts: + -p show full path in the mapping + -x show details (eg RSS usage of each segment) ``` |