blob: 531ae991b34570ad49ebbe1cbc97ed6999a09930 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# pmap(1)
```markdown
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)
```
|