pmap: add page (#7890)

feature/russian-ed-update
Ashish Shenoy 2022-03-17 17:10:40 +05:30 committed by GitHub
parent e7a06bac28
commit c29f0d16d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
pages/linux/pmap.md Normal file
View File

@ -0,0 +1,24 @@
# pmap
> Report memory map of a process or processes.
> More information: <https://manned.org/pmap>.
- 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 ...}}`